home *** CD-ROM | disk | FTP | other *** search
/ Digital Workplace Compliance Library / Digital Workplace Compliance Library.iso / pc / GeneratedItems / CSScriptLib.js
Encoding:
Text File  |  2012-05-17  |  91.1 KB  |  2,672 lines

  1. /* -- Adobe GoLive JavaScript Library */
  2. /* -- Global Functions */
  3. CSStateArray = new Object;
  4. CSCookieArray = new Object;
  5. CSCookieValArray = new Object;
  6. function CSWriteCookie(action) {
  7.     var name   = "DFT" + action[1];
  8.     var hrs    = action[2];
  9.     var path   = action[3];
  10.     var domain = action[4];
  11.     var secure = action[5];    
  12.     var exp    = new Date((new Date()).getTime() + hrs * 3600000);    
  13.     var cookieVal = "";
  14.     for(var prop in CSCookieArray) {
  15.         if(("DFT" + CSCookieArray[prop]) == name) {
  16.             if(cookieVal != "") cookieVal += "&";
  17.             cookieVal += prop + ":" + escape(CSStateArray[prop]);
  18.         }
  19.     }
  20.     if(hrs != 0)
  21.         cookieVal += "; expires=" + exp.toGMTString();
  22.     if(path != "")
  23.         cookieVal += "; path=" + path;
  24.     if(domain != "")
  25.         cookieVal += "; domain=" + domain;
  26.     if(secure == true)
  27.         cookieVal += "; secure";
  28.     document.cookie = name + '=' + cookieVal;
  29. }
  30. function CSReadCookie(action) {
  31.     var name    = "DFT" + action[1];
  32.     var cookies = document.cookie;
  33.     if(cookies == "") return;
  34.     var start = cookies.indexOf(name);
  35.     if(start == -1) return;
  36.     start += name.length + 1;
  37.     var end = cookies.indexOf(";", start);
  38.     if(end == -1) end = cookies.length;
  39.     var cookieVal = cookies.substring(start, end);
  40.     var arr = cookieVal.split('&');
  41.     for(var i = 0; i < arr.length; i++) {
  42.         var a = arr[i].split(':');
  43.         CSStateArray[a[0]] = unescape(a[1]);
  44.     }    
  45. }
  46. function CSDefineState(action) {
  47.     CSCookieArray[action[1]] = action[3]; 
  48. }
  49. function CSSetState(action) {
  50.     CSStateArray[action[1]] = action[2];
  51. }
  52. function CSInitState(action) {
  53.     if(typeof(CSStateArray[action[1]]) == "undefined")
  54.         CSStateArray[action[1]] = action[2];
  55. }
  56. function CSCheckState(action) {
  57.     var obj1 = CSStateArray[action[1]];
  58.     var obj2 = action[2];
  59.     if(typeof(obj1) == "object") {
  60.         for(var i=0;i<obj1.length;i++) {
  61.             if(obj1[i] != obj2[i])
  62.                 return false;
  63.             }
  64.         return true;
  65.         }
  66.     var res;
  67.     var op = action[3];
  68.              if(op == "==") res = (CSStateArray[action[1]] == action[2]);    
  69.         else if(op == "!=") res = (CSStateArray[action[1]] != action[2]);    
  70.         else if(op == ">" ) res = (CSStateArray[action[1]] >  action[2]);    
  71.         else if(op == ">=") res = (CSStateArray[action[1]] >= action[2]);    
  72.         else if(op == "<" ) res = (CSStateArray[action[1]] <  action[2]);    
  73.         else if(op == "<=") res = (CSStateArray[action[1]] <= action[2]);    
  74.     return res;
  75. }
  76. CSAg = window.navigator.userAgent; CSBVers = parseInt(CSAg.charAt(CSAg.indexOf("/")+1),10);
  77. CSIsW3CDOM = ((document.getElementById) && !(IsIE()&&CSBVers<6)) ? true : false;
  78. function IsIE() { return CSAg.indexOf("MSIE") > 0;}
  79. function CSIEStyl(s) { return document.all.tags("div")[s].style; }
  80. function CSNSStyl(s) { if (CSIsW3CDOM) return document.getElementById(s).style; else return CSFindElement(s,0);  }
  81. CSIImg=false;
  82. function CSInitImgID() {if (!CSIImg && document.images) { for (var i=0; i<document.images.length; i++) { if (!document.images[i].id) document.images[i].id=document.images[i].name; } CSIImg = true;}}
  83. function CSFindElement(n,ly) { if (CSBVers<4) return document[n];
  84.     if (CSIsW3CDOM) {CSInitImgID();return(document.getElementById(n));}
  85.     var curDoc = ly?ly.document:document; var elem = curDoc[n];
  86.     if (!elem) {for (var i=0;i<curDoc.layers.length;i++) {elem=CSFindElement(n,curDoc.layers[i]); if (elem) return elem; }}
  87.     return elem;
  88. }
  89. function CSGetImage(n) {if(document.images) {return ((!IsIE()&&CSBVers<5)?CSFindElement(n,0):document.images[n]);} else {return null;}}
  90. CSDInit=false;
  91. function CSIDOM() { if (CSDInit)return; CSDInit=true; if(document.getElementsByTagName) {var n = document.getElementsByTagName('DIV'); for (var i=0;i<n.length;i++) {CSICSS2Prop(n[i].id);}}}
  92. function CSICSS2Prop(id) { var n = document.getElementsByTagName('STYLE');for (var i=0;i<n.length;i++) { var cn = n[i].childNodes; for (var j=0;j<cn.length;j++) { CSSetCSS2Props(CSFetchStyle(cn[j].data, id),id); }}}
  93. function CSFetchStyle(sc, id) {
  94.     var s=sc; while(s.indexOf("#")!=-1) { s=s.substring(s.indexOf("#")+1,sc.length); if (s.substring(0,s.indexOf("{")).toUpperCase().indexOf(id.toUpperCase())!=-1) return(s.substring(s.indexOf("{")+1,s.indexOf("}")));}
  95.     return "";
  96. }
  97. function CSGetStyleAttrValue (si, id) {
  98.     var s=si.toUpperCase();
  99.     var myID=id.toUpperCase()+":";
  100.     var id1=s.indexOf(myID);
  101.     if (id1==-1) return "";
  102.     s=s.substring(id1+myID.length+1,si.length);
  103.     var id2=s.indexOf(";");
  104.     return ((id2==-1)?s:s.substring(0,id2));
  105. }
  106. function CSSetCSS2Props(si, id) {
  107.     var el=document.getElementById(id);
  108.     if (el==null) return;
  109.     var style=document.getElementById(id).style;
  110.     if (style) {
  111.         if (style.left=="") style.left=CSGetStyleAttrValue(si,"left");
  112.         if (style.top=="") style.top=CSGetStyleAttrValue(si,"top");
  113.         if (style.width=="") style.width=CSGetStyleAttrValue(si,"width");
  114.         if (style.height=="") style.height=CSGetStyleAttrValue(si,"height");
  115.         if (style.visibility=="") style.visibility=CSGetStyleAttrValue(si,"visibility");
  116.         if (style.zIndex=="") style.zIndex=CSGetStyleAttrValue(si,"z-index");
  117.     }
  118. }
  119. function CSSetStylePos(s,d,p) {
  120.     if (CSIsW3CDOM)d==0?document.getElementById(s).style.left=p+"px":document.getElementById(s).style.top=p+"px";
  121.     else if(IsIE())(d==0)?CSIEStyl(s).posLeft=p:CSIEStyl(s).posTop=p;
  122.     else (d==0)?CSNSStyl(s).left=p:CSNSStyl(s).top=p;
  123. }
  124. function CSGetStylePos(s,d) {
  125.     if (CSIsW3CDOM){CSIDOM();return parseInt((d==0)?document.getElementById(s).style.left:document.getElementById(s).style.top);}
  126.     else if (IsIE()) {CSIEWinInit();return(d==0)?CSIEStyl(s).posLeft:CSIEStyl(s).posTop;}
  127.     else {return (d==0)?CSNSStyl(s).left:CSNSStyl(s).top;}
  128. }
  129. CSIEWInit=false;
  130. function CSIEWinInit() { if(CSIEWInit==true) return; else CSIEWInit=true; if (IsIE()&&(CSAg.indexOf("Win")!=-1)&&CSBVers==4) { var i=0; var lyr=document.all.tags("div")[i++]; while(lyr) {lyr.style.posLeft=lyr.offsetLeft; lyr.style.posTop=lyr.offsetTop; lyr=document.all.tags("div")[i++];}}}
  131. CSLoopIsRunning = false; CSFctArray = new Array; CSTimeoutID = null;
  132. function CSLoop() {    
  133.     CSLoopIsRunning = false;
  134.     for (i=0;i<CSFctArray.length;i++) {
  135.         var curFct = CSFctArray[i];
  136.         if (curFct)    {
  137.             if (curFct.DoFunction(curFct)) { CSLoopIsRunning = true; curFct.counter++; }
  138.             else CSFctArray[i] = 0;
  139.         }
  140.     }
  141.     if (CSLoopIsRunning) CSTimeoutID = setTimeout("CSLoop()", 1);
  142. }
  143. function CSStartFunction(fct,data) {
  144.     if (!CSLoopIsRunning) { CSFctArray = 0; CSFctArray = new Array; }
  145.     var fctInfo = new Object;
  146.     fctInfo.DoFunction = fct; fctInfo.counter = 0; fctInfo.data = data;
  147.     CSFctArray[CSFctArray.length] = fctInfo; 
  148.     if (!CSLoopIsRunning) CSLoop();
  149. }
  150. function CSStopFunction(sceneName) {
  151.     var i;
  152.     for (i=0;i<CSFctArray.length;i++) {
  153.         var curFct = CSFctArray[i];
  154.         if (curFct){ if (curFct.data.name == sceneName){ CSFctArray[i] = 0; return; } }
  155.     }
  156. }
  157. function CSStopComplete() {
  158.     if (CSTimeoutID == null) return;
  159.     clearTimeout (CSTimeoutID); CSLoopIsRunning = false; CSTimeoutID = null;
  160. }
  161. function CSMoveLoop(fInf) {
  162.     var ticks = 60 * (((new Date()).getTime()) - fInf.data.startTime)/1000;
  163.     var f = ticks/fInf.data.ticks;
  164.     if (f < 1) { CSSetStylePos(fInf.data.layer,0,fInf.data.start[0] * (1-f) + fInf.data.end[0] * f);
  165.         CSSetStylePos(fInf.data.layer,1,fInf.data.start[1] * (1-f) + fInf.data.end[1] * f); return true; }
  166.     else { CSSetStylePos(fInf.data.layer,0,fInf.data.end[0]);
  167.         CSSetStylePos(fInf.data.layer,1,fInf.data.end[1]); }
  168.     return false;
  169. }
  170. function CSSlideObj (layer,start,end,ticks,startTime) {
  171.     this.layer=layer;this.start=start;this.end=end;this.ticks=ticks;this.startTime=startTime;
  172. }
  173. function CSSlideLayer(l,pos,anim,ticks) {
  174.     var x = pos[0]; var y = pos[1];
  175.     if (l == '') return;
  176.     if (ticks < 0) ticks = 0;
  177.     if (!anim) { CSSetStylePos(l,0,x); CSSetStylePos(l,1,y); }
  178.     else {  var fctData = new CSSlideObj(l,new Array(CSGetStylePos(l,0),CSGetStylePos(l,1)),new Array(x,y),ticks,(new Date()).getTime()); CSStartFunction(CSMoveLoop,fctData); }
  179. }
  180. function ROFindEmbed (name) {
  181.     /* only for netscape */
  182.     if(CSIsW3CDOM) {
  183.         var emb=null;
  184.         for(j=0; j<document.embeds.length; j++) {
  185.             if(document.embeds[j].name==name) {
  186.                 emb=document.embeds[j]; break;
  187.             }
  188.         }
  189.         return emb;
  190.     }
  191.     else
  192.         return CSFindElement(name);
  193. }
  194. function ROUnpackVersionNumber(n) {
  195.    return "" + (n >> 28) + "." +
  196.    ((n & 0xFF00000) >> 20) + "." + 
  197.    ((n & 0xFF000) >> 12) + "." + 
  198.    ( n & 0xFFF);
  199. }
  200. function CSSetStyleVis(s,v) {
  201.     if (CSIsW3CDOM){CSIDOM();document.getElementById(s).style.visibility=(v==0)?"hidden":"visible";}
  202.     else if(IsIE())CSIEStyl(s).visibility=(v==0)?"hidden":"visible";
  203.     else CSNSStyl(s).visibility=(v==0)?'hide':'show';
  204. }
  205. function CSGetStyleVis(s) {
  206.     if (CSIsW3CDOM) {CSIDOM();return(document.getElementById(s).style.visibility=="hidden")?0:1;}
  207.     else if(IsIE())return(CSIEStyl(s).visibility=="hidden")?0:1;
  208.     else return(CSNSStyl(s).visibility=='hide')?0:1;
  209. }
  210. ROOnPLCArray=new Array();
  211. function RPOnPositionLengthChange (position, length) {
  212.     for(var i=0;i<ROOnPLCArray.length;i++) {
  213.         var obj=ROOnPLCArray[i];
  214.         if(typeof(obj)=="object") { 
  215.             if(obj.time==position) {
  216.                 if(obj.type=="navigate") {
  217.                     window.parent.external.HandleAction("NavigateToURL("+obj.url+","+obj.target+")");
  218.                     ROOnPLCArray[i]=0;
  219.                 }
  220.                 else if(obj.type=="color") {
  221.                     window.parent.external.SetVideoBackgroundColor(obj.color);
  222.                     ROOnPLCArray[i]=0;
  223.                 }
  224.             }
  225.         }
  226.     }
  227. }
  228. function CSGetLayerClip (el) {
  229.     CSIDOM();
  230.     if (el.isIE) return (new CSRect(0,0,el.offsetWidth,el.offsetHeight));
  231.     else if (CSBVers>=5) return (new CSRect(0,0,parseInt(el.style.width),parseInt(el.style.height)));
  232.     else return (new CSRect(el.clip.left,el.clip.top,el.clip.width,el.clip.height));
  233. }
  234. function CSSetLayerClip (el,clipRect) {
  235.     var l,t,r,b;
  236.     l=clipRect.left; t=clipRect.top; r=l+clipRect.width; b=t+clipRect.height;
  237.     if(el.isIE) { el.style.clip = "rect("+ t + " " + r + " " + b + " " + l + ")"; }
  238.     else if (CSBVers>=5) el.style.clip = "rect("+ t + "px, " + r + "px, " + b + "px, " + l + "px)";
  239.     else { el.clip.left=l; el.clip.top=t; el.clip.width=clipRect.width; el.clip.height=clipRect.height; }
  240.     CSSetStyleVis(el.layer);
  241. }
  242. function CSRect (left,top,width,height) {
  243. this.left=left; this.top=top; this.width=width; this.height=height;
  244. }
  245. function CSCreateTransElement (layer, steps) {
  246.     var el;
  247.     if (IsIE()) el=document.all.tags("div")[layer];
  248.     else if (CSBVers>=5) el=document.getElementById(layer);
  249.     else el=CSNSStyl(layer);
  250.     if (el==null) return null;
  251.     if (el.locked && (el.locked == true)) return null;
  252.     el.isIE=IsIE();
  253.     el.clipRect=CSGetLayerClip(el);
  254.     if (el.clipRect==null) return null;
  255.     el.maxValue=steps;
  256.     if (el.maxValue<=0) el.maxValue=30;
  257.     el.modus=""; el.layer=layer;
  258.     el.width=el.clipRect.width; el.height=el.clipRect.height;
  259.     el.locked = true;
  260.     return el;
  261. }
  262. function CSDisposeTransElement (el) { el.locked = false; }
  263. function CSScriptInit() {
  264. if(typeof(skipPage) != "undefined") { if(skipPage) return; }
  265. idxArray = new Array;
  266. for(var i=0;i<CSInit.length;i++)
  267.     idxArray[i] = i;
  268. CSAction2(CSInit, idxArray);
  269. }
  270. function CSScriptExit() {
  271. idxArray = new Array;
  272. for(var i=0;i<CSExit.length;i++)
  273.     idxArray[i] = i;
  274. CSAction2(CSExit, idxArray);
  275. }
  276. CSInit = new Array;
  277. CSExit = new Array;
  278. CSStopExecution=false;
  279. function CSAction(array) {return CSAction2(CSAct, array);}
  280. function CSAction2(fct, array) { 
  281.     var result;
  282.     for (var i=0;i<array.length;i++) {
  283.         if(CSStopExecution) return false; 
  284.         var aa = fct[array[i]];
  285.         if (aa == null) return false;
  286.         var ta = new Array;
  287.         for(var j=1;j<aa.length;j++) {
  288.             if((aa[j]!=null)&&(typeof(aa[j])=="object")&&(aa[j].length==2)){
  289.                 if(aa[j][0]=="VAR"){ta[j]=CSStateArray[aa[j][1]];}
  290.                 else{if(aa[j][0]=="ACT"){ta[j]=CSAction(new Array(new String(aa[j][1])));}
  291.                 else ta[j]=aa[j];}
  292.             } else ta[j]=aa[j];
  293.         }            
  294.         result=aa[0](ta);
  295.     }
  296.     return result;
  297. }
  298. CSAct = new Object;
  299. CSIm=new Object();
  300. function CSIShow(n,i) {
  301.     if (document.images) {
  302.         if (CSIm[n]) {
  303.             var img=CSGetImage(n);
  304.             if (img&&typeof(CSIm[n][i].src)!="undefined") {img.src=CSIm[n][i].src;}
  305.             if(i!=0) self.status=CSIm[n][3]; else self.status=" ";
  306.             return true;
  307.         }
  308.     }
  309.     return false;
  310. }
  311. function CSILoad(action) {
  312.     im=action[1];
  313.     if (document.images) {
  314.         CSIm[im]=new Object();
  315.         for (var i=2;i<5;i++) {
  316.             if (action[i]!='') {CSIm[im][i-2]=new Image(); CSIm[im][i-2].src=action[i];}
  317.             else CSIm[im][i-2]=0;
  318.         }
  319.         CSIm[im][3] = action[5];
  320.     }
  321. }
  322. function newImage(arg) {
  323.     if (document.images) {
  324.         rslt = new Image();
  325.         rslt.src = arg;
  326.         return rslt;
  327.     }
  328. }
  329. userAgent = window.navigator.userAgent;
  330. browserVers = parseInt(userAgent.charAt(userAgent.indexOf("/")+1),10);
  331. mustInitImg = true;
  332. function initImgID() {var di = document.images; if (mustInitImg && di) { for (var i=0; i<di.length; i++) { if (!di[i].id) di[i].id=di[i].name; } mustInitImg = false;}}
  333. function findElement(n,ly) {
  334.     var d = document;
  335.     if (browserVers < 4)        return d[n];
  336.     if ((browserVers >= 6) && (d.getElementById)) {initImgID; return(d.getElementById(n))}; 
  337.     var cd = ly ? ly.document : d;
  338.     var elem = cd[n];
  339.     if (!elem) {
  340.         for (var i=0;i<cd.layers.length;i++) {
  341.             elem = findElement(n,cd.layers[i]);
  342.             if (elem) return elem;
  343.         }
  344.     }
  345.     return elem;
  346. }
  347. function changeImagesArray(array) {
  348.     if (preloadFlag == true) {
  349.         var d = document; var img;
  350.         for (i=0;i<array.length;i+=2) {
  351.             img = null; var n = array[i];
  352.             if (d.images) {
  353.                 if (d.layers) {img = findElement(n,0);}
  354.                 else {img = d.images[n];}
  355.             }
  356.             if (!img && d.getElementById) {img = d.getElementById(n);}
  357.             if (!img && d.getElementsByName) {
  358.                 var elms = d.getElementsByName(n);
  359.                 if (elms) {
  360.                     for (j=0;j<elms.length;j++) {
  361.                         if (elms[j].src) {img = elms[j]; break;}
  362.                     }
  363.                 }
  364.             }
  365.             if (img) {img.src = array[i+1];}
  366.         }
  367.     }
  368. }
  369. function changeImages() {
  370.     changeImagesArray(changeImages.arguments);
  371. }
  372. function toggleImages() {
  373.     for (var i=0; i<toggleImages.arguments.length; i+=2) {
  374.         if (selected == toggleImages.arguments[i])
  375.             changeImagesArray(toggleImages.arguments[i+1]);
  376.     }
  377. }
  378. function CSClickReturn () {
  379.     var bAgent = window.navigator.userAgent; 
  380.     var bAppName = window.navigator.appName;
  381.     if ((bAppName.indexOf("Explorer") >= 0) && (bAgent.indexOf("Mozilla/3") >= 0) && (bAgent.indexOf("Mac") >= 0))
  382.         return true; /* dont follow link */
  383.     else return false; /* dont follow link */
  384. }
  385. function CSButtonReturn () { return !CSClickReturn(); }
  386. function CSBrowserSwitch(action) {
  387.     var bAgent    = window.navigator.userAgent;
  388.     var bAppName    = window.navigator.appName;
  389.     var isNS        = (bAppName.indexOf("Netscape") >= 0);
  390.     var isIE        = (bAppName.indexOf("Explorer") >= 0);
  391.     var isWin        = (bAgent.indexOf("Win") >= 0); 
  392.     var isMac        = (bAgent.indexOf("Mac") >= 0); 
  393.     var vers        = 0;
  394.     var versIdx    = (bAgent.indexOf("Mozilla/"));
  395.     if(versIdx >= 0)
  396.         {
  397.         var sstr    = bAgent.substring(versIdx + 8, versIdx + 9);
  398.         vers        = parseInt(sstr) - 2;
  399.         }
  400.     var url        = action[1];
  401.     var platform    = action[2];
  402.     var versVec;
  403.     if(platform)
  404.         {
  405.         if(isNS && isMac) versVec = action[3];
  406.         if(isIE && isMac) versVec = action[5];
  407.         if(isNS && isWin) versVec = action[4];
  408.         if(isIE && isWin) versVec = action[6];
  409.         }
  410.     else
  411.         {
  412.         if(isNS) versVec = action[3];
  413.         if(isIE) versVec = action[4];
  414.         }
  415.     if(vers > (versVec.length-1))
  416.         vers = versVec.length-1;
  417.     if(versVec[vers] == 0)
  418.         {
  419.         location            = url;
  420.         CSStopExecution    = true;    
  421.         }
  422. }
  423. function CSURLPopupShow(formName, popupName, target) {
  424.     var form  = (!IsIE()&&CSBVers>=5)?document.forms[formName]:CSFindElement(formName);
  425.     var popup = form.elements[popupName];
  426.     window.open(popup.options[popup.selectedIndex].value, target);
  427.     popup.selectedIndex = 0;
  428. }
  429. function CSSetStyleDepth(s,depth) {
  430.     if (CSIsW3CDOM)document.getElementById(s).style.zIndex=depth;
  431.     else if (IsIE())CSIEStyl(s).zIndex=depth;
  432.     else CSNSStyl(s).zIndex=depth;
  433. }
  434. function CSGetStyleDepth(s) {
  435.     if (CSIsW3CDOM){CSIDOM();return document.getElementById(s).style.zIndex;}
  436.     else if (IsIE())return (CSIEStyl(s).zIndex);
  437.     else return (CSNSStyl(s).zIndex);
  438. }
  439. CSSeqArray = new Array;
  440. function CSSeqActionFct(seq,loopCount,continueLoop) {
  441.     if ((seq.loop < 2) || ((loopCount % 2) != 0)) {
  442.         for (var i=0;i<seq.actionCount;i++) {
  443.             if (seq.actions[3*i + 1] <= seq.frame) {
  444.                 if ((loopCount > 1) && (seq.actions[3*i + 1] < seq.start)) continue;
  445.                 if (seq.actions[3*i + 2] < loopCount) {
  446.                     seq.actions[3*i + 2] = loopCount; CSLoopIsRunning = true;
  447.                     CSAction(new Array(seq.actions[3*i + 0])); continueLoop = true;
  448.                 }
  449.             } else { continueLoop = true; break; }
  450.         }
  451.     } else {
  452.         for (var i=seq.actionCount-1;i>=0;i--) {
  453.             if (seq.actions[3*i + 1] > seq.frame) {
  454.                 if (seq.actions[3*i + 1] > seq.end) continue;
  455.                 if (seq.actions[3*i + 2] < loopCount) {
  456.                     seq.actions[3*i + 2] = loopCount; CSLoopIsRunning = true;
  457.                     CSAction(new Array(seq.actions[3*i + 0])); continueLoop = true;
  458.                 }
  459.             } else { continueLoop = true; break; }
  460.         }
  461.     }
  462.     return continueLoop;
  463. }        
  464. function CSSeqFunction(fctInfo)
  465. {
  466.     var seq = fctInfo.data; var oldFrame = seq.frame;
  467.     var newTicks = (new Date()).getTime();
  468.     seq.frame = Math.round((seq.fps * (newTicks - seq.startTicks)/1000.0) - 0.5);
  469.     var continueLoop  = false; var loopCount = 1;
  470.     
  471.     if (seq.loop > 0) {
  472.         continueLoop = true;
  473.         if (seq.loop == 1) {
  474.             var iv = (seq.end - seq.start);
  475.             var f = Math.round(((seq.frame - seq.start) / iv) - 0.5);
  476.             if (f < 0) f = 0;
  477.             loopCount = f+1;
  478.             seq.frame = seq.start + ((seq.frame - seq.start) % (seq.end - seq.start));
  479.         } else {
  480.             var iv = (seq.end - seq.start);
  481.             var f = Math.round(((seq.frame - seq.start) / iv) - 0.5);
  482.             if (f < 0) f = 0;
  483.             loopCount = f+1;
  484.             f = (seq.frame - seq.start) % (2 * iv);
  485.             if (f > iv) f = 2*iv - f;
  486.             seq.frame = seq.start + f;
  487.         }
  488.     }
  489.     continueLoop = CSSeqActionFct(seq,loopCount,continueLoop);
  490.     for (var i=0;i<seq.tracks.length;i++) {
  491.         var track = seq.tracks[i]; var frameCount = 0; var lastCount = 0; var partCount = 0;
  492.         var partIdx = track.parts.ticks.length;
  493.         for (var k=0;k<track.parts.ticks.length;k++) {
  494.             frameCount += track.parts.ticks[k];
  495.             if (frameCount > seq.frame) { partIdx = k; partCount = seq.frame - lastCount; break; }
  496.             lastCount = frameCount;
  497.         }
  498.         if (partIdx < track.parts.ticks.length) {
  499.             var type=track.parts.moveType[partIdx];
  500.             if(type==1) CSSetLinearPos (track, partIdx, partCount);
  501.             else if(type==2) CSSetCurvePos (track, partIdx, partCount);
  502.             else if(type==3) if (oldFrame != seq.frame) CSSetRandomPos (track, partIdx, partCount);
  503.                              else { x = CSGetStylePos(track.layer,0); y = CSGetStylePos(track.layer,1); }
  504.             CSSetStyleVis(track.layer,track.parts.visibilities[partIdx]);
  505.             CSSetStyleDepth(track.layer,track.parts.depths[partIdx]);
  506.             continueLoop = true;
  507.         } else {
  508.             var partIdx = track.parts.moveType.length-1;
  509.             var posArray = track.parts.positions;
  510.             var x = posArray[partIdx * 6 + 0]; var y = posArray[partIdx * 6 + 1];
  511.             CSSetStylePos(track.layer,0,x); CSSetStylePos(track.layer,1,y);
  512.             CSSetStyleVis(track.layer,track.parts.visibilities[partIdx]);
  513.             CSSetStyleDepth(track.layer,track.parts.depths[partIdx]);
  514.         }
  515.     }
  516.     return continueLoop;
  517. }
  518. function CSSetLinearPos (track, partIdx, partCount) {
  519.     var curTicks = track.parts.ticks[partIdx];
  520.     var pIdx1 = partIdx * 6; var pIdx2 = (partIdx+1) * 6;
  521.     var posArray = track.parts.positions;
  522.     var x = posArray[pIdx1 + 0]; var y = posArray[pIdx1 + 1];
  523.     var x1,x2,y1,y2;
  524.     var factor = partCount/curTicks;
  525.     x1 = x; y1 = y;
  526.     x2 = posArray[pIdx2 + 0]; y2 = posArray[pIdx2 + 1];
  527.     x = x1 * (1-factor) + x2 * factor; y = y1 * (1-factor) + y2 * factor;
  528.     CSSetStylePos(track.layer,0,x); CSSetStylePos(track.layer,1,y);
  529. }
  530. function CSSetCurvePos (track, partIdx, partCount) {
  531.     var curTicks = track.parts.ticks[partIdx];
  532.     var pIdx1 = partIdx * 6; var pIdx2 = (partIdx+1) * 6;
  533.     var posArray = track.parts.positions;
  534.     var x = posArray[pIdx1 + 0]; var y = posArray[pIdx1 + 1];
  535.     var x1,x2,x3,x4,y1,y2,y3,y4;
  536.     var factor = partCount/curTicks;
  537.     var t = factor; var u = t * t; var v = u * t;
  538.     var val1 = 3*(u-t) - v + 1; var val2 = 3*(v+t - 2*u); var val3 = 3*(u-v); var val4 = v;
  539.     x1 = x; y1 = y; x2 = posArray[pIdx1 + 2]; y2 = posArray[pIdx1 + 3];
  540.     x3 = posArray[pIdx1 + 4]; y3 = posArray[pIdx1 + 5];
  541.     x4 = posArray[pIdx2 + 0]; y4 = posArray[pIdx2 + 1];
  542.     x = x1 * val1 + x2 * val2 + x3 * val3 + x4 * val4;
  543.     y = y1 * val1 + y2 * val2 + y3 * val3 + y4 * val4;
  544.     CSSetStylePos(track.layer,0,x); CSSetStylePos(track.layer,1,y);
  545. }
  546. function CSSetRandomPos (track, partIdx, partCount) {
  547.     var curTicks = track.parts.ticks[partIdx];
  548.     var pIdx1 = partIdx * 6; var pIdx2 = (partIdx+1) * 6;
  549.     var posArray = track.parts.positions;
  550.     var x = posArray[pIdx1 + 0]; var y = posArray[pIdx1 + 1];
  551.     var x1,x2,y1,y2;
  552.     var factor = partCount/curTicks;
  553.     x1 = x; y1 = y;
  554.     x2 = posArray[pIdx2 + 0]; y2 = posArray[pIdx2 + 1];
  555.     var factorx = Math.random(); var factory = Math.random();
  556.     x = x1 * (1-factorx) + x2 * factorx; y = y1 * (1-factory) + y2 * factory;
  557.     CSSetStylePos(track.layer,0,x); CSSetStylePos(track.layer,1,y);
  558. }
  559. function CSStartSeq(name) {
  560.     var seq = CSGetScene(name); var date = new Date()
  561.     seq.startTicks = date.getTime()
  562.     for (var i=0;i<seq.actionCount;i++) seq.actions[3*i+2] = 0;
  563.     CSStartFunction(CSSeqFunction,seq);
  564. }
  565. function CSSceneObj (name,fps,loop,start,end,frame,sTicks,numAct,acts,tracks) {
  566.     this.name=name;this.fps=fps;this.loop=loop;this.start=start;this.end=end;
  567.     this.frame=frame;this.startTicks=sTicks;this.actionCount=numAct;
  568.     this.actions=acts;this.tracks=tracks;
  569. }
  570. function CSTrackObj (name,partIdx,partCount,parts) {
  571.     this.layer=name;this.partIdx=partIdx;this.partCount=partCount;this.parts=parts;
  572. }
  573. function CSPartObj (ticks,pos,depths,vis,moveType) {
  574.     this.ticks=ticks;this.positions=pos;this.depths=depths;this.visibilities=vis;
  575.     this.moveType=moveType;
  576. }
  577. function CSGetScene (name) {
  578.     for (i=0;i<CSSeqArray.length;i++) { var seq = CSSeqArray[i]; if (seq.name==name) return seq; }
  579.     return 0;
  580. }
  581. function CSAutoStartScene(action) { CSStartSeq (action[1]); }
  582. /* -- Action Functions */
  583. function CSActionGroup (action) {
  584.     for(var i=1;i<action.length;i++) { CSAction(new Array(action[i])); }
  585. }
  586. function ROAddToNowPlayingList (act) {
  587.     var i,url,clipinfo,related_info_url,width,height,media_browser_url,target;
  588.     url=act[1];
  589.     related_info_url=act[2];
  590.     if(related_info_url=="(EmptyReference!)")related_info_url="";
  591.     width=act[3];
  592.     height=act[4];
  593.     media_browser_url=act[5];
  594.     if(media_browser_url=="(EmptyReference!)")media_browser_url="";
  595.     if(act[6]==0)target="_rpbrowser";
  596.     else target="_rpexternal";
  597.     clipinfo="Album name="+act[7];
  598.     clipinfo+="|Artist name="+act[8];
  599.     clipinfo+="|CDNum="+act[9];
  600.     clipinfo+="|Comments="+act[10];
  601.     clipinfo+="|Genre="+act[11];
  602.     clipinfo+="|Language="+act[12];
  603.     clipinfo+="|Mood="+act[13];
  604.     clipinfo+="|Preference="+act[14];
  605.     clipinfo+="|Situation="+act[15];
  606.     clipinfo+="|Title="+act[16];
  607.     clipinfo+="|Year="+act[17];
  608.     window.parent.external.AddToNowPlaying (url, clipinfo, related_info_url, width, height, media_browser_url, target);
  609. }
  610. function CSCallAction(action)
  611. {
  612.     CSAction(new Array(action[1]));
  613. }
  614. function CSCallFunction(action)
  615. {
  616.     var str = action[1];
  617.     str += "(";
  618.     str += action[2];
  619.     str += ");"
  620.     return eval(str);
  621. }
  622. function ROClearNowPlayingList (act) {
  623.     window.parent.external.ClearNowPlaying();
  624. }
  625. function CSshowtimedateID(action) {
  626.     (action[2] != "") ? (updateobject = action[2]) : (updateobject = action[1])
  627.     showtime = action[3]
  628.     usemilitary = action[4]
  629.     showdate = action[5]
  630.     dateformat = action[6]
  631.     showday = action[7]
  632.     leadin = action[8]
  633.     opentag = action[9]
  634.     closetag = action[10]
  635.     theTimer = setTimeout("theClockDate()",10);
  636. }
  637. function theClockDate() {   
  638.     now = new Date()
  639.     theMonth = now.getMonth() + 1
  640.     theDate = now.getDate()
  641.     theYear = now.getFullYear()
  642.     theDay = now.getDay()
  643.     hours = now.getHours()
  644.     if(navigator.appVersion.indexOf("MSIE 5.0; Macintosh") != -1) {
  645.     if (theMonth <= 11 && theMonth >= 4) { hours = hours + 1}
  646.     }
  647.     ampm = ((hours >= 12) ? "PM" : "AM");
  648.     hours = ((hours > 12 && usemilitary == false) ? hours -12 : hours);
  649.     if (hours == 0) hours = 12;
  650.     if (hours >= 1 && hours <=9) hours = "0" + hours;
  651.     minutes = now.getMinutes()
  652.     if (minutes < 10) minutes = "0" + minutes;
  653.     time = "";
  654.     (showtime == true) ? (time = " " + hours + ":" + minutes) : (time = "",ampm="");
  655.     (usemilitary == true) ? (ampm="") : (ampm=ampm);
  656.     days = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
  657.     today = days[theDay];
  658.     if (showdate == true) {
  659.         if (dateformat == 0) todisplay = theMonth + "/" + theDate + "/" + theYear;
  660.         if (dateformat == 1) todisplay = theDate + "/" + theMonth + "/" + theYear;
  661.         if (dateformat == 2) todisplay = theYear + "/" + theMonth + "/" + theDate;
  662.         if (dateformat == 3) todisplay = theYear + "/" + theDate + "/" + theMonth;
  663.         } else {todisplay = "" }
  664.     if (showday == true) todisplay =  today + ", " + todisplay;
  665.     if (document.all) { document.all(updateobject).innerHTML = opentag + leadin + todisplay + time + " " + ampm + closetag; } 
  666.     else {
  667.         if (document.getElementById) { document.getElementById(updateobject).innerHTML = opentag + leadin + todisplay + time + " " + ampm + closetag; }
  668. }
  669. theTimer = setTimeout("theClockDate()",2000);
  670. }
  671. function CSCloseWindow() { 
  672. if (self.parent.frames.length != 0) {
  673.     self.parent.close()    
  674.     } else {
  675.     window.close()
  676.     }
  677. }
  678. function CSConditionAction(action) {
  679.     if (action[1]) {
  680.         if (CSAction(new Array(action[1])) == true) {
  681.             if (action[2]) CSAction(new Array(action[2]));
  682.         } else if (action[3]) CSAction(new Array(action[3]));
  683.     }
  684. }
  685. function WBConfirmLink(action) {
  686.      if (checkIt(action)) {
  687.          if (action[2] != "(Empty Reference!)" && action[2] != "(EmptyReference!)") {
  688.              if (action[3].length < 1) {
  689.                 parent.location.href=action[2];
  690.             }
  691.             else {
  692.                 parent.frames[action[3]].location.href=action[2];
  693.             }
  694.         }
  695.     }
  696.     return;
  697. }
  698. function checkIt(action) {
  699.     var carryOn = window.confirm(action[1]);
  700.     return carryOn;
  701.     }
  702. function CSCSSRedirect(action) { 
  703. if (navigator.platform.indexOf("Win32") != -1) { os = "windows" };
  704. if (navigator.platform.indexOf("Mac") != -1) { os = "mac" };
  705. if (navigator.platform.indexOf("x") != -1 || navigator.platform.indexOf("BSD") != -1 || navigator.platform.indexOf("S") != -1) { os = "unix" };
  706. if (navigator.appName.indexOf("Microsoft") != -1) { browser = "IE" };
  707. if (navigator.appName.indexOf("Netscape") != -1) { browser = "NN" };
  708. if (navigator.appVersion.indexOf("4.") != -1) { version = 4 };
  709. if (navigator.appVersion.indexOf("5.") != -1) { version = 5 };
  710. var tag='<LINK REL="styleSheet" TYPE="text/css" HREF="'+action[2]+'" >';
  711. var type=action[1];
  712.     if(type==0 && os=="mac" && browser=="NN" && version==4) { document.write(tag) }
  713.     else 
  714.     if(type==1 && os=="mac" && browser=="NN" && version==5) { document.write(tag) }
  715.     else 
  716.     if(type==2 && os=="windows" && browser=="NN" && version==4) { document.write(tag) }
  717.     else 
  718.     if(type==3 && os=="windows" && browser=="NN" && version==5) { document.write(tag) }
  719.     else 
  720.     if(type==4 && os=="unix" && browser=="NN" && version==4) { document.write(tag) }
  721.     else 
  722.     if(type==5 && os=="unix" && browser=="NN" && version==5) { document.write(tag) }
  723.     else 
  724.     if(type==6 && os=="mac" && browser=="IE") { document.write(tag) }
  725.     else 
  726.     if(type==7 && os=="windows" && browser=="IE") { document.write(tag) }
  727. }
  728. function initIArray() {
  729. this.length = initIArray.arguments.length;
  730. for (var i = 0; i < this.length; i++)
  731. this[i+1] = initIArray.arguments[i]; 
  732. }
  733. function dailyImageURL(action) {
  734. var dateArray = new
  735. initIArray("Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");
  736. var today = new Date();
  737. var day = dateArray[today.getDay()];
  738. if (today.getDay() == 0) { day = "Sunday"; }
  739. var img = null;
  740. if (document.images) {
  741.     if (!IsIE()&&CSBVers<5) img = CSFindElement(action[1],0);
  742.     else img = document.images[action[1]];
  743.         if (img) {
  744.             if (day == "Monday" && action[2] != "(Empty Reference!)" && action[2] != "(EmptyReference!)") img.src = action[2]
  745.             if (day == "Tuesday" && action[3] != "(Empty Reference!)" && action[3] != "(EmptyReference!)") img.src = action[3]
  746.             if (day == "Wednesday" && action[4] != "(Empty Reference!)" && action[4] != "(EmptyReference!)") img.src = action[4]
  747.             if (day == "Thursday" && action[5] != "(Empty Reference!)" && action[5] != "(EmptyReference!)") img.src = action[5]
  748.             if (day == "Friday" && action[6] != "(Empty Reference!)" && action[6] != "(EmptyReference!)") img.src = action[6]
  749.             if (day == "Saturday" && action[7] != "(Empty Reference!)" && action[7] != "(EmptyReference!)") img.src = action[7]
  750.             if (day == "Sunday" && action[8] != "(Empty Reference!)" && action[8] != "(EmptyReference!)") img.src = action[8]
  751.         }  
  752. }  
  753. }
  754. function initArray() {
  755. this.length = initArray.arguments.length;
  756. for (var i = 0; i < this.length; i++)
  757. this[i+1] = initArray.arguments[i]; 
  758. }
  759. function dailyRedirect(action) {
  760. var dateArray = new
  761. initArray("Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");
  762. var today = new Date();
  763. var day = dateArray[today.getDay()];
  764. if (today.getDay() == 0) { day = "Sunday"; }
  765. if (day == "Monday" && action[1] != "(Empty Reference!)" && action[1] != "(EmptyReference!)") window.location = action[1]
  766. if (day == "Tuesday" && action[2] != "(Empty Reference!)" && action[2] != "(EmptyReference!)") window.location = action[2]
  767. if (day == "Wednesday" && action[3] != "(Empty Reference!)" && action[3] != "(EmptyReference!)") window.location = action[3]
  768. if (day == "Thursday" && action[4] != "(Empty Reference!)" && action[4] != "(EmptyReference!)") window.location = action[4]
  769. if (day == "Friday" && action[5] != "(Empty Reference!)" && action[5] != "(EmptyReference!)") window.location = action[5]
  770. if (day == "Saturday" && action[6] != "(Empty Reference!)" && action[6] != "(EmptyReference!)") window.location = action[6]
  771. if (day == "Sunday" && action[7] != "(Empty Reference!)" && action[7] != "(EmptyReference!)") window.location = action[7]
  772. }
  773. function CSDeleteCookie(action) 
  774. {
  775. var name=action[1]
  776. var value=action[2]
  777. var jours=-12000
  778. path="/"
  779. domain=null
  780. var expdate = new Date ();
  781. expdate.setTime (expdate.getTime() + (jours * 60 * 60 * 1000));
  782. SetCookie(name,value,expdate)
  783. }
  784. function SetCookie (name, value) {
  785.   var argv = SetCookie.arguments;
  786.   var argc = SetCookie.arguments.length;
  787.   var expires = (argc > 2) ? argv[2] : null;
  788.   var secure = (argc > 5) ? argv[5] : false;
  789.   document.cookie = name + "=" + escape (value) +
  790.     ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
  791.     ((path == null) ? "" : ("; path=" + path)) +
  792.     ((domain == null) ? "" : ("; domain=" + domain)) +
  793.     ((secure == true) ? "; secure" : "");
  794. }
  795. function CSdigitalclock(action){
  796. img1 = CSGetImage(action[1]);
  797. img2 = CSGetImage(action[2]);
  798. img3 = CSGetImage(action[3]);
  799. img4 = CSGetImage(action[4]);
  800. usemilitary = action[5];
  801. giflocation = action[6];
  802. path = giflocation.substring(0, giflocation.length - 5);
  803. extension = (giflocation.indexOf("jpg") != -1) ? (".jpg") : (".gif");
  804. digClock();
  805. }
  806. function digClock() {   
  807. now = new Date();
  808. hours = now.getHours();
  809. theMonth = now.getMonth();
  810. if(navigator.appVersion.indexOf("MSIE 5.0; Macintosh") != -1) {
  811.     if (theMonth <= 11 && theMonth >= 4) { hours = hours + 1 };
  812.     if (hours == 24) { hours = 0 };
  813.     }
  814. minutes = now.getMinutes();
  815. hours = ((hours > 12 && usemilitary == false) ? hours -12 : hours);
  816. if (hours >= 0 && hours <=9) hours = "0" + hours;
  817. if (usemilitary == false && hours == 00) { hours = 12 };
  818. if (minutes >= 0 && minutes <=9) minutes = "0" + minutes;
  819. hours = "" + hours;
  820. minutes = "" + minutes;
  821. hour1 = hours.substring(0,1);
  822. hour2 = hours.substring(1,2);
  823. minutes1 = minutes.substring(0,1);
  824. minutes2 = minutes.substring(1,2);
  825. updater();
  826. }
  827.     
  828. function updater() {
  829. img1.src = path + hour1 + extension;
  830. img2.src = path + hour2 + extension;
  831. img3.src = path + minutes1 + extension;
  832. img4.src = path + minutes2 + extension;
  833. theTimer = setTimeout("digClock()",1000);
  834. }
  835. function CSDocWrite(action) { document.write(action[1]); }
  836. var gCSIEDragObject = null;
  837. var gDragX,gDragY;
  838. function CSSetupDrag (layerName) {
  839.     this.x = 0; this.y = 0;
  840.     if (IsIE()) {
  841.         this.canDrag=true; 
  842.         this.layerObj=document.all.tags("div")[layerName];
  843.         this.layerObj.dragObj = this;
  844.         document.ondragstart = CSIEStartDrag;
  845.         document.onmousedown = CSIEMouseDown;
  846.         document.onmouseup = CSIEStopDrag;
  847.     } else {
  848.         if (CSBVers>=5)
  849.             {
  850.             this.layerObj=document.getElementById(layerName);
  851.             this.layerObj.addEventListener("mousedown", CSNS6StartDrag, true);
  852.             this.layerObj.addEventListener("mouseup", CSNS6StopDrag, true);
  853.             }
  854.         else
  855.             {
  856.             this.layer=CSNSStyl(layerName);this.onmousemove=null; 
  857.             this.layer.document.theLayer=this;
  858.             this.layer.document.captureEvents(Event.MOUSEDOWN);
  859.             this.layer.document.onmousedown=CSNSStartDrag; 
  860.             this.layer.document.onmouseup=CSNSStopDrag;
  861.             }
  862.     }
  863. }
  864. function CSNS6StartDrag (ev) {
  865.     CSIDOM();
  866.     ev.currentTarget.addEventListener("mousemove", CSNS6DoDrag, true);
  867.     gDragX=ev.clientX;
  868.     gDragY=ev.clientY;
  869.     ev.preventDefault();
  870. }
  871. function CSNS6DoDrag (ev) {
  872.     var style=ev.currentTarget.style;
  873.     style.left = parseInt(style.left)+(ev.clientX-gDragX)+"px";
  874.     style.top = parseInt(style.top)+(ev.clientY-gDragY)+"px";
  875.     gDragX=ev.clientX;
  876.     gDragY=ev.clientY;
  877. }
  878. function CSNS6StopDrag (ev) {    
  879.     ev.target.removeEventListener("mousedown", CSNS6StartDrag, true);
  880.     ev.target.removeEventListener("mouseup", CSNS6StopDrag, true);
  881.     ev.currentTarget.removeEventListener("mousemove", CSNS6DoDrag, true);
  882.     ev.preventDefault();
  883. }
  884. function CSNSStartDrag (ev) {
  885.     var clickInMe = false;
  886.     if (ev.target != this) {
  887.         for (var i=0;i<this.images.length;i++) {
  888.             if (this.images[i] == ev.target) { clickInMe = true; break;}
  889.             }
  890.         }
  891.     else clickInMe = true;    
  892.     if (clickInMe)
  893.         {
  894.         this.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP); 
  895.         this.onmousemove=CSNSDoDrag;
  896.         this.theLayer.x= ev.pageX;
  897.         this.theLayer.y= ev.pageY;
  898.         this.routeEvent(ev);
  899.         return false;
  900.         }
  901.    this.onmousemove=null;this.releaseEvents(Event.MOUSEMOVE|Event.MOUSEUP);
  902.     this.routeEvent(ev);
  903.    return true; 
  904. }
  905. function CSNSStopDrag (ev) {
  906.    this.onmousemove=null;this.releaseEvents(Event.MOUSEMOVE|Event.MOUSEUP);return false; 
  907. }
  908. function CSNSDoDrag (ev) {
  909.     this.theLayer.layer.moveBy(ev.pageX-this.theLayer.x, ev.pageY-this.theLayer.y); 
  910.     this.theLayer.x = ev.pageX; 
  911.     this.theLayer.y = ev.pageY;
  912.     this.routeEvent(ev);
  913. }
  914. function CSIEStartDrag () {
  915.     if(gCSIEDragObject != null && (gCSIEDragObject.tagName==event.srcElement.tagName))
  916.         event.returnValue=false;  
  917. }
  918. function CSIEStopDrag () { gCSIEDragObject=null; document.onmousemove=null; }
  919. function CSIEMouseDown () {
  920.     if(event.button==1) {
  921.         dragLayer = event.srcElement;
  922.         while (dragLayer!=null) 
  923.             {
  924.             if ((dragLayer.dragObj == null) && (dragLayer.tagName == "DIV"))
  925.                 break;
  926.             if (dragLayer.dragObj != null)
  927.                 break;
  928.             dragLayer=dragLayer.parentElement;
  929.             }
  930.             
  931.         if (dragLayer == null) return;
  932.         if (dragLayer.dragObj!=null && dragLayer.dragObj.canDrag) {
  933.             gCSIEDragObject = dragLayer;
  934.             gCSIEDragObject.dragObj.x=event.clientX;
  935.             gCSIEDragObject.dragObj.y=event.clientY;
  936.             document.onmousemove = CSIEMouseMove;
  937.         }
  938.     }
  939. }
  940. function CSIEMouseMove () {
  941.     gCSIEDragObject.dragObj.layerObj.style.pixelLeft+=(event.clientX-gCSIEDragObject.dragObj.x);
  942.     gCSIEDragObject.dragObj.layerObj.style.pixelTop+=(event.clientY-gCSIEDragObject.dragObj.y);
  943.     gCSIEDragObject.dragObj.x=event.clientX;
  944.     gCSIEDragObject.dragObj.y=event.clientY;
  945.     event.returnValue = false;
  946.     event.cancelBubble = true;
  947. }
  948. var gDragArray = new Array();
  949. function CSDrag(action) { gDragArray[gDragArray.length] = new CSSetupDrag(action[1]); }
  950. function ROEmbeddedActions (act) {
  951.     var fct,i,j,name,nsemb;
  952.     name=act[1];
  953.     if (!IsIE())nsemb = ROFindEmbed(name);
  954.        if(act[2]!="") {
  955.         fct=act[2]; fct+="(";
  956.         if(act[3]==undefined)
  957.             fct+=")";
  958.         for(i=3; i<act.length; i++) {
  959.             fct+="\'"; fct+=act[i]; fct+="\'";
  960.             if(i==act.length-1)fct+=")";
  961.             else fct+=",";
  962.         }
  963.     }
  964.     if(IsIE()) return eval(name+"."+fct);
  965.     else {
  966.         if(nsemb) return nsemb.eval(fct);
  967.     }
  968. }
  969. function CSFieldValidate(action) { 
  970. var form = action[1];
  971. var elem = action[2];
  972. var theEntry  = document.forms[form].elements[elem].value
  973. var theFormElem = document.forms[form].elements[elem]
  974. var badEntry = ""
  975.     function theAlert () { 
  976.     alert(action[6]);
  977.     theFormElem.select();
  978.     theFormElem.focus();
  979.     }      
  980.     function isEmpty() { 
  981.         if (theEntry == "") { 
  982.         theAlert()
  983.         }     
  984.     }
  985.     function isNumber() { 
  986.             if (theEntry == "") { 
  987.             theAlert()
  988.             }         
  989.         for (i=0; i<theEntry.length; i++) {  
  990.             if (theEntry.charAt(i) < "0" || theEntry.charAt(i) > "9") {  
  991.                 badEntry = "notnumber"
  992.                 } 
  993.             }          
  994.         if (badEntry == "notnumber") {
  995.         theAlert()    
  996.         }    
  997.     } 
  998.         
  999.     function isAlpha() { 
  1000.             if (theEntry == "") { 
  1001.             theAlert()
  1002.             }         
  1003.         for (i=0; i<theEntry.length; i++) {  
  1004.             if (theEntry.charAt(i) >= "0" && theEntry.charAt(i) <= "9") {  
  1005.                 badEntry = "notalpha"
  1006.                 } 
  1007.             }          
  1008.         if (badEntry == "notalpha") {
  1009.         theAlert()    
  1010.         }    
  1011.     } 
  1012.                 
  1013.     function requiredChars() {
  1014.     numofChars = theEntry.length
  1015.         if (numofChars != action[4]) {
  1016.             theAlert()
  1017.         } 
  1018.     }    
  1019.     function exactString() {
  1020.         if (theEntry != action[5]) {
  1021.             theAlert()
  1022.         } 
  1023.     }    
  1024.     
  1025.     function validEmail() {
  1026.         invalidChars = " /:,;"        
  1027.         if (theEntry == "") { 
  1028.             badEntry = "badEmail"
  1029.             }
  1030.         for (i=0; i < 5; i++)  {
  1031.             badChar = invalidChars.charAt(i)
  1032.                 if (theEntry.indexOf(badChar,0) > -1) {
  1033.                 badEntry = "badEmail"
  1034.                 }
  1035.         }    
  1036.     atsignLoc = theEntry.indexOf("@",1)
  1037.         if (atsignLoc == -1) {
  1038.             badEntry = "badEmail"
  1039.         }        
  1040.         if (theEntry.indexOf("@",atsignLoc+1) > -1) {
  1041.         badEntry = "badEmail"
  1042.         }
  1043.     dotLoc = theEntry.indexOf(".",atsignLoc)
  1044.         if (dotLoc == -1) {
  1045.         badEntry = "badEmail"
  1046.         }
  1047.         if (dotLoc+3 > theEntry.length) {
  1048.         badEntry = "badEmail"
  1049.         }
  1050.         if (badEntry == "badEmail") {
  1051.         theAlert()
  1052.         }
  1053.     }
  1054.     function validCC() { 
  1055.     var theNumber = new Array(theEntry.length);
  1056.     var i = 0
  1057.     var total = 0
  1058.         for (i = 0; i < theEntry.length; ++i) {
  1059.         theNumber[i] = parseInt(theEntry.charAt(i))
  1060.         }
  1061.         for (i = theNumber.length -2; i >= 0; i-=2) {  
  1062.         theNumber[i] *= 2;                             
  1063.         if (theNumber[i] > 9) theNumber[i]-=9;             
  1064.         }                                         
  1065.         for (i = 0; i < theNumber.length; ++i) {
  1066.         total += theNumber[i];                         
  1067.         }    
  1068.         isinteger = total/10
  1069.         if(parseInt(isinteger)!=isinteger) {
  1070.         theAlert()
  1071.         }
  1072.     }
  1073.     
  1074. var type=action[3];
  1075. if(type==0) isEmpty()
  1076. else if(type==1) isNumber()
  1077. else if(type==2) isAlpha()
  1078. else if(type==3) requiredChars()
  1079. else if(type==4) exactString()
  1080. else if(type==5) validEmail()
  1081. else if(type==6) validCC()
  1082. }
  1083.         
  1084. /* 
  1085. Fix Layer Position 1.0
  1086. A component of MenuMachine 2.1
  1087. Copyright 2006 Big Bang Software Pty Ltd
  1088. */
  1089. /*begin FixLayerPosition*/
  1090. function __bbFLP(el,s,amt)
  1091.     {
  1092.     if(typeof(__bbElCache[el])=="undefined"){__bbElCache[el]=__bbgID(el);}
  1093.     var d=document,e=__bbElCache[el],mvAmt=0,sOf=__bbGST(),targetPos=e.origPos+sOf;
  1094.     if(e.currentPos!=targetPos){if(s){var diff=e.currentPos-targetPos;mvAmt=(Math.abs(diff)<amt)?-diff:((diff>0)?-amt:amt);mvAmt=(Math.abs(diff)>(amt*4))?mvAmt+mvAmt:mvAmt;var mtp=(e.currentPos+=mvAmt)+_bbBr.px;_bbBr.op?e.style.pixelTop=mtp:e.style.top=mtp;e.currentPos+=mvAmt;}
  1095.     else{var mtp=targetPos+_bbBr.px;_bbBr.op?e.style.pixelTop=mtp:e.style.top=mtp;e.currentPos=targetPos;}}
  1096.     };
  1097. function bbFixLayer(action)
  1098.     {
  1099.     var n=action[1],sm=action[2],spd=action[3],tks,px;
  1100.     if(!sm){tks=10;px=100;}
  1101.     else{if(!spd)spd="m";switch(spd){case "f":tks=10;px=20;break;case "m":tks=20;px=4;break;case "s":tks=30;px=2;break;}}
  1102.     var d=document,ua=navigator.userAgent.toLowerCase();function o(n){return (ua.indexOf("opera "+n)>-1||ua.indexOf("opera/"+n)>-1)&&window.opera?1:0};
  1103.     _bbBr.op5=o(5);_bbBr.op6=o(6);_bbBr.op=(_bbBr.op5||_bbBr.op6||window.opera)?1:0;
  1104.     _bbBr.ie=(ua.indexOf('msie')!=-1&&!_bbBr.op)?1:0;_bbBr.dt=(ua.indexOf("mac")==-1&&((d.doctype&&d.doctype.name&&d.doctype.name.indexOf("http:\/\/")>-1)||(d.compatMode&&(d.compatMode!="BackCompat"&&d.compatMode!="QuirksMode"))))?1:0;
  1105.     _bbBr.px=_bbBr.op?"":"px";var el=__bbgID(n);if(!el)return;el.origPos=__bbyP(el);el.currentPos=el.origPos-__bbGST();setInterval("__bbFLP('"+n+"',"+sm+","+px+");",tks);
  1106.     };
  1107. function __bbyP(o){var c=0;if (o.offsetParent){while (o.offsetParent){c+=o.offsetTop;o=o.offsetParent;}}else if(o.y){c+=o.y;} return c;};
  1108. function __bbGST(){return _bbBr.ie?(_bbBr.dt?document.documentElement.scrollTop:document.body.scrollTop):window.pageYOffset;};
  1109. function __bbgID(i){if(document.getElementById){return document.getElementById(i);}else if(document.all){return document.all[i];}else{return false;}};
  1110. var __bbElCache=[],_bbBr={};
  1111. /*end FixLayerPosition*/
  1112. function CSFlipMove(action) {
  1113.     if (action[1] == '') return;
  1114.     var curX = CSGetStylePos(action[1],0); var curY = CSGetStylePos(action[1],1);
  1115.     var x1 = action[2][0];
  1116.     var y1 = action[2][1];
  1117.     if ((x1 != curX) || (y1 != curY)) CSSlideLayer(action[1],action[2],action[4],action[5]);
  1118.     else CSSlideLayer(action[1],action[3],action[4],action[5]);
  1119. }
  1120. if (navigator.appName == "Netscape" && navigator.appVersion.charAt(0) >=5) {
  1121.     leftH = ".left";
  1122.     topV = ".top";
  1123.     nndoc = "document.getElementById(layername).style";
  1124.     iestyle = "";
  1125.     offsetH = "window.pageXOffset";
  1126.     offsetV = "window.pageYOffset";
  1127.     } 
  1128.     
  1129.     else if (navigator.appName == "Netscape" && navigator.appVersion.charAt(0) >=4) {
  1130.     leftH = ".left";
  1131.     topV = ".top";
  1132.     nndoc = "document.";
  1133.     iestyle = "";
  1134.     offsetH = "window.pageXOffset";
  1135.     offsetV = "window.pageYOffset";    
  1136.     } 
  1137.     
  1138.     else if (navigator.appName == "Microsoft Internet Explorer") {
  1139.     leftH = ".pixelLeft";
  1140.     topV = ".pixelTop";
  1141.     nndoc = "";
  1142.     iestyle = "document.getElementById(layername).style";
  1143.     offsetH = "document.body.scrollLeft";
  1144.     offsetV = "document.body.scrollTop";
  1145.     }
  1146. function getnewPos() {
  1147. var currentH = eval(offsetH);
  1148. var currentV = eval(offsetV);
  1149. x = parseInt(currentH) + parseInt(xpos);
  1150. y = parseInt(currentV) + parseInt(ypos);
  1151. moveLayer();
  1152. setTimeout("getnewPos()",10)
  1153. }
  1154. function CSFloatLayer(action) {
  1155. layername = action[1];
  1156. ypos = action[2];
  1157. xpos = action[3];
  1158. if (navigator.appVersion.charAt(0) >=5 || navigator.appName == "Microsoft Internet Explorer") {
  1159.     leftPos = eval(nndoc + iestyle + leftH);
  1160.     topPos = eval(nndoc + iestyle + topV);
  1161.     } else {
  1162.     leftPos = eval(nndoc + layername + iestyle + leftH);
  1163.     topPos = eval(nndoc + layername + iestyle + topV);
  1164.     }
  1165.     getnewPos()
  1166.     }
  1167. function moveLayer() {
  1168. if (navigator.appVersion.charAt(0) >=5  || navigator.appName == "Microsoft Internet Explorer") {
  1169.     eval(nndoc + iestyle + topV + "=" + y);
  1170.     eval(nndoc + iestyle + leftH + "=" + x);
  1171.     } else {
  1172.     eval(nndoc + layername + iestyle + topV + "=" + y);
  1173.     eval(nndoc + layername + iestyle + leftH + "=" + x);
  1174.     }
  1175. }
  1176. // START FORM CALCULATOR 1.0.1 FUNCTIONS (www.mindpalette.com)
  1177. if (typeof MPFormCalcStoredVars == "undefined") var MPFormCalcStoredVars = new Array();
  1178. MPFormCalcStoredVars['val1var'] = 2000;
  1179. MPFormCalcStoredVars['val2var'] = 6000;
  1180. function MPFormCalcMain(action) {
  1181.     var formName = action[1];
  1182.     var field1 = MPFormCalcTrim(action[2]);
  1183.     var static1 = action[3];
  1184.     var var1 = action[4];
  1185.     var operation = action[5];
  1186.     var field2 = MPFormCalcTrim(action[6]);
  1187.     var static2 = action[7];
  1188.     var var2 = action[8];
  1189.     var roundOff = action[9];
  1190.     var forceDec = action[10];
  1191.     var absVal = action[11];
  1192.     var result_field = action[12];
  1193.     var result_id = action[13];
  1194.     var result_var = action[14];
  1195.     var round_type = action[15];
  1196.     var commas = action[16];
  1197.     var minSet = action[17];
  1198.     var minVal = parseFloat(action[18]);
  1199.     var maxSet = action[19];
  1200.     var maxVal = parseFloat(action[20]);
  1201.     var go = true;
  1202.     var numVal1 = 0;
  1203.     var numVal2 = 0;
  1204.     if (typeof document.forms[formName] == 'undefined') formName = 0;
  1205.     if (typeof document.forms[formName] == 'undefined') go = false;
  1206.     if (go) {
  1207.         var thisForm = document.forms[formName];
  1208.         numVal1 += MPFormCalcBuildNum(thisForm, field1, static1, var1);
  1209.         if (action[6] != '' || static2 != '' || var2 != '') {
  1210.             numVal2 += MPFormCalcBuildNum(thisForm, field2, static2, var2);
  1211.             numVal1 = MPFormCalcDoOp(numVal1, operation, numVal2);
  1212.             }
  1213.         if (minSet && numVal1 < minVal) numVal1 = minVal;
  1214.         if (maxSet && numVal1 > maxVal) numVal1 = maxVal;
  1215.         if (roundOff != '') numVal1 = MPFormCalcRound(numVal1, roundOff, round_type);
  1216.         if (absVal == true) numVal1 = Math.abs(numVal1);
  1217.         if (commas == true || forceDec > 0) numVal1 = MPFormCalcFormatString(numVal1, forceDec, commas);
  1218.         if (result_id != '') MPFormCalcDivText(result_id, numVal1);
  1219.         if (result_var != '') MPFormCalcStoredVars[result_var] = numVal1;
  1220.         if (result_field != '') thisForm.elements[result_field].value = numVal1;
  1221.         }
  1222.     }
  1223. function MPFormCalcVarType(thisField) {
  1224.     var fieldType = false;
  1225.     if (typeof thisField.type != 'undefined') fieldType = thisField.type;
  1226.     if (!fieldType) if (thisField[0].type != 'undefined') fieldType = 'group';
  1227.     if (!fieldType) fieldType = 'undefined';
  1228.     return fieldType;
  1229.     }
  1230. function MPFormCalcInArray(needle, haystack) {
  1231.     results = false;
  1232.     for (var n=0; n<haystack.length; n++) {
  1233.         if (haystack[n] == needle) {
  1234.             results = true;
  1235.             break;
  1236.             }
  1237.         }
  1238.     return results;
  1239.     }
  1240. function MPFormCalcTrim(inString) {
  1241.     var frontIndex = 0;
  1242.     var backIndex = inString.length - 1;
  1243.     var trimList = new Array(" ", "\t", "\n", "\r");
  1244.     while (MPFormCalcInArray(inString.charAt(frontIndex), trimList)) frontIndex++;
  1245.     while (MPFormCalcInArray(inString.charAt(backIndex), trimList)) backIndex--;
  1246.     return inString.substring(frontIndex, (backIndex + 1));
  1247.     }
  1248. function MPFormCalcTrimArray(thisArray) {
  1249.     var results = new Array();
  1250.     var count = 0;
  1251.     for (var n=0; n<thisArray.length; n++) {
  1252.         var thisVal = MPFormCalcTrim(thisArray[n]);
  1253.         if (thisVal != '') {
  1254.             results[count] = MPFormCalcTrim(thisArray[n]);
  1255.             count++;
  1256.             }
  1257.         }
  1258.     return results;
  1259.     }
  1260. function MPFormCalcDoOp(num1, operation, num2) {
  1261.     results = 0;
  1262.     if (operation == 1) results = num1 - num2;
  1263.         else if (operation == 2) results = num1 * num2;
  1264.         else if (operation == 3) results = num1 / num2;
  1265.         else if (operation == 4) results = num1 + ((num2 / 100) * num1);
  1266.         else if (operation == 5) results = num1 - ((num2 / 100) * num1);
  1267.         else results = num1 + num2;
  1268.     return results;
  1269.     }
  1270. function MPFormCalcGetNum(thisString) {
  1271.     thisString = thisString+"";
  1272.     var result = "";
  1273.     var regEx =  /^[0-9.]/;
  1274.     for (var n=0; n<thisString.length; n++) {
  1275.         var thisChar = thisString.charAt(n);
  1276.         if (regEx.test(thisChar)) result += thisChar;
  1277.         }
  1278.     if (result == '.' || result == 'NaN') result = 0;
  1279.     result = (result == '') ? 0 : parseFloat(result);
  1280.     if (result == "NaN") result = 0;
  1281.     return result;
  1282.     }
  1283. function MPFormCalcBuildNum(thisForm, fields, staticVal, varVal) {
  1284.     var numVal = 0;
  1285.     numVal += MPFormCalcGetNum(staticVal);
  1286.     if (varVal != '') {
  1287.         if (typeof MPFormCalcStoredVars[varVal] != "undefined") numVal += MPFormCalcGetNum(MPFormCalcStoredVars[varVal]);
  1288.         }
  1289.     if (fields != '') {
  1290.         fieldList = MPFormCalcTrimArray(fields.split(','));
  1291.         for (var n=0; n<fieldList.length; n++) {
  1292.             thisField = fieldList[n];
  1293.             if (thisField != '' && typeof thisForm.elements[thisField] != 'undefined') thisField = thisForm.elements[thisField];
  1294.             numVal += MPFormCalcFlatten(thisField);
  1295.             }
  1296.         }
  1297.     return numVal;
  1298.     }
  1299. function MPFormCalcFlatten(passedField) {
  1300.     var numVal = 0;
  1301.     fieldArray = (MPFormCalcVarType(passedField) != "group") ? new Array(passedField) : passedField;
  1302.     for (var n=0; n<fieldArray.length; n++) {
  1303.         var thisField = fieldArray[n];
  1304.         var fieldType = MPFormCalcVarType(thisField);
  1305.         if (fieldType == "text" || fieldType == "textarea" || fieldType == "hidden" || fieldType == "password") {
  1306.             numVal = MPFormCalcDoOp(numVal, 0, MPFormCalcGetNum(thisField.value));
  1307.             } else if (fieldType == "select-one")
  1308.             numVal = MPFormCalcDoOp(numVal, 0, MPFormCalcGetNum(thisField.options[thisField.options.selectedIndex].value));
  1309.             else if (fieldType == "select-multiple") {
  1310.             var thisSum = 0;
  1311.             for (var i=0; i<thisField.length; i++) {
  1312.                 if (thisField.options[i].selected) {
  1313.                     var selection = MPFormCalcGetNum(thisField.options[i].value);
  1314.                     thisSum += selection;
  1315.                     }
  1316.                 }
  1317.             numVal = MPFormCalcDoOp(numVal, 0, thisSum);
  1318.             }
  1319.             else if (fieldType == "checkbox" || fieldType == "radio") {
  1320.             if (typeof thisField.length != "undefined") {
  1321.                 var thisSum = 0;
  1322.                 for (var i=0; i<thisField.length; i++) {
  1323.                     if (thisField[i].checked) thisSum += MPFormCalcGetNum(thisField[i].value);
  1324.                     }
  1325.                 numVal = MPFormCalcDoOp(numVal, 0, thisSum);
  1326.                 } else if (thisField.checked) {
  1327.                 numVal = MPFormCalcDoOp(numVal, 0, MPFormCalcGetNum(thisField.value));
  1328.                 }
  1329.             }
  1330.         }
  1331.     return numVal;
  1332.     }
  1333. function MPFormCalcRound(number, places, type) {
  1334.     var precision = (places != 0) ? Math.pow(10, Math.abs(places)) : 0;
  1335.     if (places > 0) number = number * precision;
  1336.         else if (places < 0) number = number / precision;
  1337.     if (type == 2) number = Math.ceil(number);
  1338.         else if (type == 1) number = Math.floor(number);
  1339.         else number = Math.round(number);
  1340.     if (places > 0) number = number / precision;
  1341.         else if (places < 0) number = number * precision;
  1342.     return number;
  1343.     }
  1344. function MPFormCalcSplitIntDec(number) {
  1345.     string = number+'';
  1346.     if (string.indexOf('.') > -1) var results = string.split('.');
  1347.         else results = new Array(string, '');
  1348.     return results;
  1349.     }
  1350. function MPFormCalcFormatString(number, force, commas) {
  1351.     var string = number+"";
  1352.     if (force > 0) {
  1353.         var temp = MPFormCalcSplitIntDec(string);
  1354.         var integer = temp[0];
  1355.         var decimal = temp[1];
  1356.         while (decimal.length < force) { decimal+="0" };
  1357.         string = integer+'.'+decimal;
  1358.         }
  1359.     if (commas) {
  1360.         var temp = MPFormCalcSplitIntDec(string);
  1361.         var integer = temp[0];
  1362.         var decimal = '.'+temp[1];
  1363.         var last = (integer.length - 1);
  1364.         if (last > 2) {
  1365.             var results = "";
  1366.             var n = last;
  1367.             while (n>-1) {
  1368.                 x = 1;
  1369.                 while (x<4 && n>-1) {
  1370.                     results = string.charAt(n) + results;
  1371.                     n--;
  1372.                     x++;
  1373.                     }
  1374.                 if (n>-1) results = ','+results;
  1375.                 }
  1376.             string = results+decimal;
  1377.             }
  1378.         }
  1379.     return string;
  1380.     }
  1381. function MPFormCalcDivText(div, text) {
  1382.     if (document.layers) {
  1383.         if (typeof eval("document."+div+".document") != "undefined") {
  1384.             with (eval("document."+div+".document")) {
  1385.                 open();
  1386.                 write("<"+"HTML"+"><"+"HEAD"+"><"+"/HEAD"+"><"+"BODY"+">"+text+"<"+"/BODY"+"><"+"/HTML"+">");
  1387.                 close();
  1388.                 }
  1389.             }
  1390.         } else if (document.all && typeof document.all[div] != "undefined") {
  1391.         document.all[div].innerHTML = text;
  1392.         } else if (document.getElementById && !document.all && typeof document.getElementById(div) != "undefined") {
  1393.         document.getElementById(div).innerHTML = text;
  1394.         }
  1395.     }
  1396. // END FORM CALCULATOR 1.0 FUNCTIONS
  1397. //-->
  1398. function frameP(action) {
  1399.         if(parent.frames.length==0) {
  1400.             var fileName=window.location.href.substring(window.location.href.lastIndexOf("/")+1,window.location.href.length);
  1401.             window.location.href=action[1]+"?"+action[2]+"="+fileName;
  1402.         } else {
  1403.             if(top.location.search!="") {
  1404.                 var sFrame=top.location.search.substring(1,top.location.search.indexOf("="));
  1405.                 if(name==sFrame) {
  1406.                     var sName=top.location.search.substring(top.location.search.indexOf("=")+1,top.location.search.length);
  1407.                     var fileName=window.location.href.substring(window.location.href.lastIndexOf("/")+1,window.location.href.length);
  1408.                     if(fileName!=sName) {
  1409.                         location=sName;
  1410.                     }
  1411.                 }
  1412.             }
  1413.         }
  1414.     }
  1415. function ROGetClipInfo (act) {
  1416.     var property,type;
  1417.     type=act[1];
  1418.     if(type==0)property="Album name";
  1419.     else if(type==1)property="Artist name";
  1420.     else if(type==2)property="CDNum";
  1421.     else if(type==3)property="Comments";
  1422.     else if(type==4)property="Genre";
  1423.     else if(type==5)property="Language";
  1424.     else if(type==6)property="Mood";
  1425.     else if(type==7)property="Preference";
  1426.     else if(type==8)property="Situation";
  1427.     else if(type==9)property="Title";
  1428.     else if(type==10)property="Year";
  1429.     else return "";
  1430.     return window.parent.external.GetClipInfo (property);
  1431. }
  1432. function CSGetFormElementValue(action) { 
  1433.     var form = action[1];
  1434.     var elem = action[2];
  1435.     return document.forms[form].elements[elem].value;
  1436. }
  1437. function ROGetInstalledComponents() {
  1438.     return window.parent.external.InstalledComponents;
  1439. }
  1440. function CSGetLayerPos(action) { 
  1441.     var layer = action[1];
  1442.     var x        = CSGetStylePos(layer, 0);
  1443.     var y        = CSGetStylePos(layer, 1);
  1444.     return new Array(x, y);
  1445. }
  1446. function ROGetPlayerProperty (act) {
  1447.     var property,type;
  1448.     type=act[1];
  1449.     if(type==0)property="APIVERSION";
  1450.     else if(type==1)property="BANDWIDTH";
  1451.     else if(type==2)property="COUNTRYID";
  1452.     else if(type==3)property="DISTRIBUTION";
  1453.     else if(type==4)property="INSTALLPATH";
  1454.     else if(type==5)property="LANGUAGEID";
  1455.     else if(type==6)property="LANGUAGEPREFERENCE";
  1456.     else if(type==7)property="OSNAME";
  1457.     else if(type==8)property="PRODUCTNAME";
  1458.     else if(type==9)property="PRODUCTVERSION";
  1459.     else if(type==10)property="REGIONDATE";
  1460.     else return "";
  1461.     return window.parent.external.PlayerProperty(property);
  1462. }
  1463. function ROGetPlayerState() {
  1464.     var result,state;
  1465.     state=window.parent.external.GetPlayerState();
  1466.     switch(state) {
  1467.         case 0:
  1468.             result="Stopped";break;
  1469.         case 1:
  1470.             result="Contacting";break;
  1471.         case 2:
  1472.             result="Buffering";break;
  1473.         case 3:
  1474.             result="Playing";break;
  1475.         case 4:
  1476.             result="Paused";break;
  1477.         case 5:
  1478.             result="Seeking";break;
  1479.         default:
  1480.             result="";break;
  1481.     }
  1482.     return result;
  1483. }
  1484. function ROGetVersionNumber (act) {
  1485.     var comp,min,max,result,type,unpack;
  1486.     type=act[1];
  1487.     if(type==0 && act[2]=="") {
  1488.         result=window.parent.external.RealPlayerVersion;
  1489.     }
  1490.     else {
  1491.         if(type==1)comp="audp";
  1492.         else if(type==2)comp="DBCMpg1";
  1493.         else if(type==3)comp="Flash";
  1494.         else if(type==4)comp="GF";
  1495.         else if(type==5)comp="GFJP";
  1496.         else if(type==6)comp="imgp";
  1497.         else if(type==7)comp="MP3PL";
  1498.         else if(type==8)comp="MPGA";
  1499.         else if(type==9)comp="PNG";
  1500.         else if(type==10)comp="RA";
  1501.         else if(type==11)comp="RealTxt";
  1502.         else if(type==12)comp="RichFX";
  1503.         else if(type==13)comp="RPix";
  1504.         else if(type==14)comp="RV";
  1505.         else if(type==15)comp="sdp";
  1506.         else if(type==16)comp="vidp";
  1507.         if(act[2]!="")comp=act[2];
  1508.         max=act[3];
  1509.         min=act[4];
  1510.         result=window.parent.external.ComponentVersion (comp+":"+max+"."+min);
  1511.     }
  1512.     unpack=act[5];
  1513.     if(unpack)
  1514.         result=ROUnpackVersionNumber (result);
  1515.     return result;
  1516. }
  1517. function CSGoBack1() { history.back() }
  1518. function CSGotoLink(action) {
  1519.     if (action[2].length) {
  1520.         var hasFrame=false;
  1521.         for(i=0;i<parent.frames.length;i++) { if (parent.frames[i].name==action[2]) { hasFrame=true; break;}}
  1522.         if (hasFrame==true)
  1523.             parent.frames[action[2]].location = action[1];
  1524.         else
  1525.             window.open (action[1],action[2],"");
  1526.     }
  1527.     else location = action[1];
  1528. }
  1529. function ROHandleAction (act) {
  1530.     var str,type;
  1531.     type=act[1];
  1532.     if(type==0)str="CD";
  1533.     else if(type==1)str="MyDevices";
  1534.     else if(type==2)str="NowPlaying";
  1535.     else if(type==3)str="Radio";
  1536.     else if(type==4)str="ShowEqualizer";
  1537.     else if(type==5)str="Web";
  1538.     else return;
  1539.     window.parent.external.HandleAction(str);
  1540. }
  1541. function CSIdleObject (action) {
  1542.     this.conditionAction = action[2];
  1543.     this.trueAction = action[3];
  1544.     this.falseAction = action[4];
  1545.     this.exitIdleIfTrue = action[1];
  1546.     this.lastState = false;
  1547. }
  1548. function CSIdleAction(action) {
  1549.     idleObj = new CSIdleObject (action);
  1550.     CSStartFunction (CSDoIdle,idleObj);
  1551. }
  1552. function CSDoIdle (param) {
  1553.     idleObject=param.data;
  1554.     if (idleObject.conditionAction) {
  1555.         gCurrentIdleObject = idleObject;
  1556.         var result = CSAction(new Array(idleObject.conditionAction));
  1557.         if (result == true && idleObject.lastState==false) {
  1558.             idleObject.lastState = result;
  1559.             if (idleObject.trueAction) {
  1560.                 CSAction(new Array(idleObject.trueAction));
  1561.                 if (idleObject.exitIdleIfTrue == true) return false;
  1562.             }
  1563.         } else if (result == false && idleObject.lastState == true) {
  1564.             idleObject.lastState = false;
  1565.             if (idleObject.falseAction) {
  1566.                 CSAction(new Array(idleObject.falseAction));
  1567.             }        
  1568.         }
  1569.     }
  1570.     return true;
  1571. }
  1572. function CSLayerIntersect (condition)
  1573. {
  1574.     var l1,t1,r1,b1,l2,t2,r2,b2;
  1575.     if (IsIE()) {
  1576.         var layer1=document.all.tags("div")[condition[1]];
  1577.         var layer2=document.all.tags("div")[condition[2]];
  1578.         l1=layer1.style.pixelLeft; t1=layer1.style.pixelTop; r1=layer1.offsetWidth+l1; b1=layer1.offsetHeight+t1;
  1579.         l2=layer2.style.pixelLeft; t2=layer2.style.pixelTop; r2=layer2.offsetWidth+l2; b2=layer2.offsetHeight+t2;    
  1580.     } else {
  1581.         var layer1=CSNSStyl(condition[1]);
  1582.         var layer2=CSNSStyl(condition[2]);
  1583.         if (CSBVers>=5)
  1584.             {
  1585.             CSIDOM();
  1586.             l1=parseInt(layer1.left); t1=parseInt(layer1.top); r1=parseInt(layer1.width)+l1; b1=parseInt(layer1.height)+t1;
  1587.             l2=parseInt(layer2.left); t2=parseInt(layer2.top); r2=parseInt(layer2.width)+l2; b2=parseInt(layer2.height)+t2;
  1588.             }
  1589.         else
  1590.             {
  1591.             l1=layer1.x; t1=layer1.y; r1=layer1.clip.width+l1; b1=layer1.clip.height+t1;
  1592.             l2=layer2.x; t2=layer2.y; r2=layer2.clip.width+l2; b2=layer2.clip.height+t2;
  1593.             }
  1594.     }
  1595.     var w = (r1 < r2 ? r1 : r2) - (l1 > l2 ? l1 : l2)
  1596.     var h = (b1 < b2 ? b1 : b2) - (t1 > t2 ? t1 : t2)
  1597.     return ((w >= 0) && (h >= 0));
  1598. }
  1599. function CSKeePress(action) {
  1600. desiredKey1 = action[1];
  1601. calledAction1 = action[2];
  1602. desiredKey2 = action[3];
  1603. calledAction2 = action[4];
  1604. desiredKey3 = action[5];
  1605. calledAction3 = action[6];
  1606. desiredKey4 = action[7];
  1607. calledAction4 = action[8];
  1608. if (document.layers) { document.captureEvents(Event.KEYPRESS) ; }
  1609. document.onkeydown = checkKey;
  1610. function checkKey(e) {
  1611.     e = (e) ? e : (window.event) ? window.event : "";
  1612.     if (e) { var keyPressed = ""
  1613.              if (e.which)  keyPressed = e.which; 
  1614.              else  keyPressed = event.keyCode;
  1615.              alphaNum = String.fromCharCode(keyPressed).toLowerCase();
  1616.              if (desiredKey1 == alphaNum) { CSAction(new Array(calledAction1)) };
  1617.              if (desiredKey2 == alphaNum) { CSAction(new Array(calledAction2)) };
  1618.              if (desiredKey3 == alphaNum) { CSAction(new Array(calledAction3)) };
  1619.              if (desiredKey4 == alphaNum) { CSAction(new Array(calledAction4)) };
  1620.     }
  1621. }
  1622. checkKey();
  1623. }
  1624. CSCurrentPressedKey = -1;
  1625. function CSKeyPress(ev) {
  1626.     var code;
  1627.     if(IsIE()) CSCurrentPressedKey = event.keyCode;
  1628.     else CSCurrentPressedKey = ev.which;
  1629. }
  1630. document.onkeypress    = CSKeyPress;
  1631. function CSKeyCompare(condition)
  1632. {
  1633.     var eq = (condition[1] == CSCurrentPressedKey);
  1634.     if(eq)
  1635.         CSCurrentPressedKey = -1;
  1636.     return eq;
  1637. }
  1638. function CSPAKkillframe() { 
  1639. if (self.parent.frames.length != 0)
  1640. self.parent.location = document.location
  1641. }
  1642. function CSshowdate(action) {
  1643.     form = action[1];
  1644.     elem = action[2];
  1645.     modified = new Date(document.lastModified);
  1646.     theMonth = modified.getMonth() + 1;
  1647.     theDate = modified.getDate();
  1648.     theYear = (navigator.appVersion.indexOf("3.0") != -1) ? (modified.getYear()) : (modified.getFullYear());
  1649.     theDay = modified.getDay();
  1650.     days = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
  1651.     modified = new Date(document.lastModified);
  1652.     today = days[theDay];
  1653.     if (action[3] == 0) todisplay = theMonth + "/" + theDate + "/" + theYear;
  1654.     if (action[3] == 1) todisplay = theDate + "/" + theMonth + "/" + theYear;
  1655.     if (action[3] == 2) todisplay = theYear + "/" + theMonth + "/" + theDate;
  1656.     if (action[3] == 3) todisplay = theYear + "/" + theDate + "/" + theMonth;
  1657.     if (action[4] == true) todisplay = today + ", " + todisplay;
  1658.     if(form != "" || elem != "") { document.forms[form].elements[elem].value = todisplay} ;
  1659.     if (action[5] == false) { alert(todisplay) } 
  1660.         }
  1661. function CSshowdateID(action) {
  1662. (action[2] != "") ? (updateobject = action[2]) : (updateobject = action[1]);
  1663. modified = new Date(document.lastModified);
  1664. theMonth = modified.getMonth() + 1;
  1665. theDate = modified.getDate();
  1666. theYear = (navigator.appVersion.indexOf("3.0") != -1) ? (modified.getYear()) : (modified.getFullYear());
  1667. theDay = modified.getDay();
  1668. days = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
  1669. today = days[theDay];
  1670. if (action[3] == 0) todisplay = theMonth + "/" + theDate + "/" + theYear;
  1671. if (action[3] == 1) todisplay = theDate + "/" + theMonth + "/" + theYear;
  1672. if (action[3] == 2) todisplay = theYear + "/" + theMonth + "/" + theDate;
  1673. if (action[3] == 3) todisplay = theYear + "/" + theDate + "/" + theMonth;
  1674. if (action[4] == true) todisplay = today + ", " + todisplay;
  1675. if (document.all) { document.all(updateobject).innerHTML = action[6] + action[5] + todisplay + action[7]
  1676.      } else {
  1677.     if (document.getElementById) { document.getElementById(updateobject).innerHTML = action[6] + action[5] + todisplay + action[7] }
  1678.     }
  1679. }
  1680. var myLayer = false;
  1681. var offSetX = 1;
  1682. var offSetY = 1;
  1683. function CSMouseFollow(action,offX,offY){
  1684.     myLayer = action[1];
  1685.     if(offX){offSetX=offX;}
  1686.     if(offY){offSetY=offY;}
  1687.     if (navigator.appName == "Netscape") {
  1688.         document.captureEvents(Event.MOUSEMOVE);
  1689.     } else {
  1690.         if(navigator.appVersion.indexOf("Mac")!=-1){offSetX=offSetX-18;}
  1691.     }
  1692.     document.onmousemove = mouseLayer;
  1693. }
  1694. function mouseLayer(e){
  1695.     if (navigator.appName == "Netscape" && navigator.appVersion.charAt(0) >=5) {
  1696.         document.getElementById(myLayer).style.left = (e.pageX+offSetX);
  1697.         document.getElementById(myLayer).style.top = (e.pageY+offSetY); 
  1698.         }
  1699.         else if (navigator.appName == "Netscape") {
  1700.             document.layers[myLayer].moveBy(
  1701.             (e.pageX+offSetX) - document.layers[myLayer].left, 
  1702.             (e.pageY+offSetY) - document.layers[myLayer].top);
  1703.                 return true; 
  1704.         } else {
  1705.         document.all[myLayer].style.pixelLeft = (event.x+offSetX);
  1706.         document.all[myLayer].style.pixelTop = (event.y+offSetY);
  1707.         event.cancelBubble = true;
  1708.         event.returnValue = false;
  1709.     }
  1710. }
  1711. function CSMoveBy(action)
  1712. {
  1713.     x = CSGetStylePos(action[1], 0);
  1714.     y = CSGetStylePos(action[1], 1);
  1715.     x += parseInt(action[2]);
  1716.     y += parseInt(action[3]);
  1717.     x = CSSetStylePos(action[1], 0, x);
  1718.     y = CSSetStylePos(action[1], 1, y);
  1719. }
  1720. function CSMoveTo(action) { CSSlideLayer(action[1],action[2],action[3],action[4]); }
  1721. function CSHistoryGo(action) { history.go(action[1]); }
  1722. function RONavigateToURL (act) {
  1723.     var target,type,url,delay;
  1724.     url=act[1];
  1725.     type=act[2];
  1726.     if(type==0)target="_rpbrowser";
  1727.     else target="_rpexternal";
  1728.     delay=act[3]*1000;
  1729.     if(delay>0) {
  1730.         var obj=new Object();
  1731.         obj.type="navigate";
  1732.         obj.time=delay;
  1733.         obj.url=url;
  1734.         obj.target=target;
  1735.         if(ROOnPLCArray)
  1736.             ROOnPLCArray[ROOnPLCArray.length]=obj;
  1737.     }
  1738.     else
  1739.         window.parent.external.HandleAction("NavigateToURL("+url+","+target+")");
  1740. }
  1741. function CSFixFct() {
  1742.     var d = document; var w = window;
  1743.     if (d.cs.csFix.w != w.innerWidth || d.cs.csFix.h != w.innerHeight) {
  1744.         d.location = d.location; }
  1745. }
  1746. function CSNSFix(action) { 
  1747.     var d = document; var w = window;
  1748.     if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {
  1749.         if (typeof d.cs == 'undefined') { 
  1750.             d.cs = new Object;
  1751.             d.cs.csFix = new Object; 
  1752.         } else if (CSIsFrame (w) == true) CSFixFct();
  1753.         d.cs.csFix.w = w.innerWidth;
  1754.         d.cs.csFix.h = w.innerHeight; 
  1755.         window.onresize = CSFixFct;
  1756.       }
  1757. }
  1758. function CSIsFrame (window) {
  1759.     var rootWindow = window.parent;
  1760.     if (rootWindow == 'undefined') return false;
  1761.     for (i = 0; i < rootWindow.frames.length; i++)
  1762.         if (window == rootWindow.frames[i]) return true;
  1763.     return false;
  1764. }
  1765. function CSOpenAlert(action) { alert(action[1]); }
  1766. function CSOpenWindow(action) {
  1767.     var wf = "";    
  1768.     wf = wf + "width=" + action[3];
  1769.     wf = wf + ",height=" + action[4];
  1770.     wf = wf + ",resizable=" + (action[5] ? "yes" : "no");
  1771.     wf = wf + ",scrollbars=" + (action[6] ? "yes" : "no");
  1772.     wf = wf + ",menubar=" + (action[7] ? "yes" : "no");
  1773.     wf = wf + ",toolbar=" + (action[8] ? "yes" : "no");
  1774.     wf = wf + ",directories=" + (action[9] ? "yes" : "no");
  1775.     wf = wf + ",location=" + (action[10] ? "yes" : "no");
  1776.     wf = wf + ",status=" + (action[11] ? "yes" : "no");        
  1777.     window.open(action[1],action[2],wf);
  1778. }
  1779. function CSOpenWindowPrompt(action) {
  1780. var where = self.location.href
  1781. var nw = prompt("Enter a new width:","")
  1782. if (nw != null) {
  1783. var nh = prompt("Enter a new height:","")
  1784. }
  1785. var wf = "";    
  1786. wf = wf + "width=" + nw;
  1787. wf = wf + ",height=" + nh;
  1788. wf = wf + ",resizable=" + (action[1] ? "yes" : "no");
  1789. wf = wf + ",scrollbars=" + (action[2] ? "yes" : "no");
  1790. wf = wf + ",menubar=" + (action[3] ? "yes" : "no");
  1791. wf = wf + ",toolbar=" + (action[4] ? "yes" : "no");
  1792. wf = wf + ",directories=" + (action[5] ? "yes" : "no");
  1793. wf = wf + ",location=" + (action[6] ? "yes" : "no");
  1794. wf = wf + ",status=" + (action[7] ? "yes" : "no");        
  1795.     if (nw == null || nh == null) { 
  1796.     return null
  1797.     } else {
  1798.     window.open(where,'testwin',wf);
  1799.     }
  1800. }
  1801. var actn1 = "";
  1802. var actn2 = "";
  1803. var pass=""
  1804. var z=23;
  1805. var y=28;
  1806. iCounter = 3;
  1807. if (Array) {
  1808.     var f= new Array();
  1809.     var K= new Array();
  1810.     var base= new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z","a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z")
  1811. function inc(){
  1812. iCounter--
  1813. if (iCounter > 0)
  1814.     {
  1815.     if (confirm("\nPassword is incorrect.\n\n\n\nRetry?"))
  1816.         Check()
  1817.     } 
  1818.     else
  1819.         alert('Access Denied');
  1820. function Check(){
  1821. pass = prompt("Enter your password.","")
  1822. if(pass==null || pass==""){
  1823.     alert("You did not enter a password!");
  1824.     if(pass==""){
  1825.         Check()
  1826.     } 
  1827. else{
  1828.     var lpass=(pass.length)+1
  1829.     for (l=1; l<lpass; l++){
  1830.         K[l]=pass.charAt(l)
  1831.     } 
  1832.     var transmit=0;
  1833.     for (y=1; y<lpass; y++){
  1834.         for(x=0; x<62; x++){
  1835.             if (K[y]==base[x]){
  1836.                 transmit+=f[x]
  1837.                 transmit*=y
  1838.             } 
  1839.         } 
  1840.     } 
  1841.     if (transmit==parseInt(actn1))     
  1842.         go()
  1843.     else
  1844.         inc()
  1845. function go(){
  1846. alert(actn2);
  1847. location.href=pass+".html";
  1848. function PVpassword(action) { 
  1849. if (Array) { 
  1850.     actn1 = action[1];
  1851.     actn2 = action[2];
  1852.     z=23;
  1853.     y=28;
  1854.     for (x=0; x<10; x++){
  1855.         f[x]=x<<9
  1856.         f[x]+=23
  1857.     } 
  1858.     for (x=10; x<36; x++){
  1859.         y=y<<1
  1860.         v= Math.sqrt(y)
  1861.         v = parseInt(v,16)
  1862.         v+=5
  1863.         f[x]=v
  1864.         y++
  1865.     } 
  1866.     for (x=36; x<62; x++){
  1867.         z=z<<1
  1868.         v= Math.sqrt(z)
  1869.         v = parseInt(v,16)
  1870.         v+=74
  1871.         f[x]=v
  1872.         z++
  1873.     } 
  1874.     iCounter = 3;
  1875.     Check();
  1876. }
  1877. function CSPDFredirect(action) {    
  1878.     if(navigator.mimeTypes && navigator.mimeTypes["application/pdf"] && navigator.mimeTypes["application/pdf"].enabledPlugin) {
  1879.         location.href=action[1]
  1880.     }
  1881.     else if (navigator.appName == "Microsoft Internet Explorer") {
  1882.            x = confirm("The page you are trying to view requires the Adobe Portable Document Format (.PDF) browser plug-in or the Adobe Acrobat Reader application. We could not detect if your browser has this plug-in installed. To attempt to view the page anyway, click OK. Otherwise click CANCEL to view an alternate page")
  1883.         if (x == true)  location.href=action[1] 
  1884.     }
  1885.     else {
  1886.         x = confirm("Your browser may not be able to display PDF files. To attempt to view the PDF page anyway, click OK. Otherwise click CANCEL to view an alternate page")
  1887.         if (x == true)  location.href=action[1] 
  1888.     }         
  1889. }
  1890. function ROPlayClip (act) {
  1891.     var i,url,clipinfo,related_info_url,width,height,media_browser_url,target,delay,bnow_playing;
  1892.     url=act[1];
  1893.     related_info_url=act[2];
  1894.     if(related_info_url=="(EmptyReference!)")related_info_url="";
  1895.     width=act[3];
  1896.     height=act[4];
  1897.     media_browser_url=act[5];
  1898.     if(media_browser_url=="(EmptyReference!)")media_browser_url="";
  1899.     if(act[6]==0)target="_rpbrowser";
  1900.     else target="_rpexternal";
  1901.     delay=act[7]*1000;
  1902.     if(delay>0) {
  1903.         var obj=new Object();
  1904.         obj.type="navigate";
  1905.         obj.time=delay;
  1906.         obj.url=media_browser_url;
  1907.         media_browser_url="";
  1908.         obj.target=target;
  1909.         if(ROOnPLCArray)
  1910.             ROOnPLCArray[ROOnPLCArray.length]=obj;
  1911.     }
  1912.     bnow_playing=act[8];
  1913.     clipinfo="Album name="+act[9];
  1914.     clipinfo+="|Artist name="+act[10];
  1915.     clipinfo+="|CDNum="+act[11];
  1916.     clipinfo+="|Comments="+act[12];
  1917.     clipinfo+="|Genre="+act[13];
  1918.     clipinfo+="|Language="+act[14];
  1919.     clipinfo+="|Mood="+act[15];
  1920.     clipinfo+="|Preference="+act[16];
  1921.     clipinfo+="|Situation="+act[17];
  1922.     clipinfo+="|Title="+act[18];
  1923.     clipinfo+="|Year="+act[19];
  1924.     window.parent.external.PlayClip (url,clipinfo,related_info_url,width,height,media_browser_url,target,bnow_playing);
  1925. }
  1926. function CSPlayScene(action) { CSStartSeq (action[1]); }
  1927. var CSLastSound = null
  1928. function CSPlaySound(action) {
  1929.     if (eval('document.'+action[1])!=null) {
  1930.         if (CSLastSound != null && CSLastSound != action[1]) eval ('document.' + CSLastSound + '.stop()');
  1931.         CSLastSound = action[1]
  1932.         if (window.navigator.userAgent.indexOf("MSIE") > 0) eval ('document.' + CSLastSound + '.run()');
  1933.         else eval ('document.' + CSLastSound + '.play(true)');
  1934.     } else { alert ("The current Plug-In cannot be controlled by JavaScript. Please try using LiveAudio or a compatible Plug-In!"); }
  1935. }
  1936. CSImages=new Array();
  1937. function CSPreloadImage(action) {
  1938.     if (document.images) { CSImages[CSImages.length]=new Image(); CSImages[CSImages.length-1].src=action[1]; }
  1939. }
  1940. function ROPreloadURL (act) {
  1941.     ROPreloadURLArray[ROPreloadURLArray.length]=act[1];
  1942. }
  1943. ROPreloadURLArray=new Array();
  1944. function RPOnPreload() {    /* RO-Event-Handler */
  1945.     for(var i=0;i<ROPreloadURLArray.length;i++) {
  1946.         if (ROPreloadURLArray[i] != 0) {
  1947.             window.parent.external.PreloadURL(ROPreloadURLArray[i]);
  1948.             ROPreloadURLArray[i]=0;
  1949.         }
  1950.     }
  1951. }
  1952. function CSprintdocument(action){
  1953. if (navigator.appName .indexOf("Microsoft") != -1 && navigator.platform.indexOf("Mac") != -1 || navigator.appVersion.indexOf("3.0") != -1) {
  1954. alert("Please use your browser\'s print command to print this document.");
  1955.     } else {
  1956.     (action[1] != "") ? (parent.frames[action[1]].print()) : (parent.print());
  1957.     }
  1958. }
  1959. function CSRandomLinks(action){
  1960. var urlcounter = 0;
  1961. if (action[2] != "(Empty Reference!)" && action[2] != "(EmptyReference!)") { ++urlcounter};
  1962. if (action[3] != "(Empty Reference!)" && action[3] != "(EmptyReference!)") { ++urlcounter};
  1963. if (action[4] != "(Empty Reference!)" && action[4] != "(EmptyReference!)") { ++urlcounter};
  1964. if (action[5] != "(Empty Reference!)" && action[5] != "(EmptyReference!)") { ++urlcounter};
  1965. if (action[6] != "(Empty Reference!)" && action[6] != "(EmptyReference!)") { ++urlcounter};
  1966. if (action[7] != "(Empty Reference!)" && action[7] != "(EmptyReference!)") { ++urlcounter};
  1967. if (parent.frames.length > 0) {
  1968. if (action[1].length > 0) { parent.frames[action[1]].location=action[Math.floor(Math.random()*urlcounter)+2] }
  1969. }
  1970. else 
  1971. if (action[1].length > 0) { window.open(action[Math.floor(Math.random()*urlcounter)+2],action[1],"") }    
  1972. if (action[1].length == 0) { top.location=action[Math.floor(Math.random()*urlcounter)+2] }
  1973. }
  1974. function CSRandomImg(action) { 
  1975.     var img = CSGetImage(action[1]);
  1976.     if (img) 
  1977.         {
  1978.         var v1 =  Math.floor(Math.random() * 10);
  1979.         var whichone = v1-(Math.floor(v1/3)*3);
  1980.         img.src = action[whichone+2];
  1981.         }
  1982. }
  1983. function getCookie(thecookie){
  1984.     tempString= thecookie + "=";
  1985.     if(document.cookie.length>0){
  1986.         start = document.cookie.indexOf(tempString);
  1987.         if(start!=-1){
  1988.             end = document.cookie.indexOf(";",start);
  1989.             if(end==-1){end=document.cookie.length;}
  1990.             start += tempString.length;
  1991.             return unescape(document.cookie.substring(start,end))
  1992.         }
  1993.     }
  1994. }
  1995. function setCookie(thecookie,value,expire){
  1996.     cookieExpires = new Date
  1997.     cookieExpires.setMonth(cookieExpires.getMonth() + 6)
  1998.     document.cookie = thecookie + "=" + escape(value) + ";expires=" + cookieExpires.toGMTString();
  1999. }
  2000. function testCookie(thecookie){
  2001.     if(getCookie(thecookie)){
  2002.         return(getCookie(thecookie));
  2003.     }else{
  2004.         return false;
  2005.     }
  2006. }
  2007. function CSredPrompt(action) {
  2008.     var thecookie = action[5]
  2009.     if(testCookie(action[5]) && action[4] == true){    
  2010.             location.href=getCookie(action[5]);
  2011.     } else {
  2012.     var x = 0;
  2013.     }
  2014.     
  2015.     function kill() {
  2016.     alert(action[3]);
  2017.     x = 1;
  2018.     var enter = prompt(action[1],action[2]); 
  2019.     if (enter == action[6]){setCookie(action[5], action[7]);location.href=action[7];}
  2020.     else if (enter == action[8]){setCookie(action[5], action[9]);location.href=action[9];}
  2021.     else if (enter == action[10]){setCookie(action[5], action[11]);location.href=action[11];}
  2022.     else if (enter == action[12]){setCookie(action[5], action[13]);location.href=action[13];}
  2023.     else if (enter == action[15]){setCookie(action[5], action[16]);location.href=action[16];}
  2024.     else if (enter == action[2]){kill();}
  2025.     else if (enter == null) return
  2026.     else  kill()
  2027.     }
  2028.     if (x == 0) {
  2029.     var enter = prompt(action[1],action[2]); 
  2030.     if (enter == action[6]){setCookie(action[5], action[7]);location.href=action[7];}
  2031.     else if (enter == action[8]){setCookie(action[5], action[9]);location.href=action[9];}
  2032.     else if (enter == action[10]){setCookie(action[5], action[11]);location.href=action[11];}
  2033.     else if (enter == action[12]){setCookie(action[5], action[13]);location.href=action[13];}
  2034.     else if (enter == action[14]){setCookie(action[5], action[15]);location.href=action[15];}
  2035.     else if (enter == action[2]){kill();}
  2036.     else if (enter == null) return
  2037.     else  kill()
  2038.     }
  2039. }
  2040. function CSResizeWindow(action) { 
  2041.     if(navigator.appVersion.charAt(0) >=4) { window.resizeTo (action[1],action[2]) }
  2042. }
  2043. function CSScrollDown(action){
  2044.     if(navigator.appVersion.charAt(0) >=4) {
  2045.         var container = 0    
  2046.         if (action[2] > 0)        {
  2047.             while (container < action[1]) {
  2048.                    window.scrollBy(0,action[2]);
  2049.                    container = container + action[2];  
  2050.             }     
  2051.           }
  2052.     }
  2053. }
  2054. function CSScrollLeft(action){
  2055.     if(navigator.appVersion.charAt(0) >=4) {
  2056.         var container = 0    
  2057.         if (action[2] > 0)        {
  2058.             while (container < action[1]) {
  2059.                    window.scrollBy(-action[2],0);
  2060.                    container = container + action[2];  
  2061.             }     
  2062.           }
  2063.     }
  2064. }
  2065. function CSScrollRight(action){
  2066.     if(navigator.appVersion.charAt(0) >=4) {
  2067.         var container = 0    
  2068.         if (action[2] > 0)        {
  2069.             while (container < action[1]) {
  2070.                    window.scrollBy(action[2],0);
  2071.                    container = container + action[2];  
  2072.             }     
  2073.           }
  2074.     }
  2075. }
  2076. function CSScrollUp(action){
  2077.     if(navigator.appVersion.charAt(0) >=4) {
  2078.         var container = 0    
  2079.         if (action[2] > 0)        {
  2080.             while (container < action[1]) {
  2081.                    window.scrollBy(0,-action[2]);
  2082.                    container = container + action[2];  
  2083.             }     
  2084.           }
  2085.     }
  2086. }
  2087. function CSScrollstatus(action) {
  2088. phrase = action[1];
  2089. speed = action[2];    
  2090. (action[3] != true)    ? delay = setTimeout("CSScrollleftidle()",20) : delay = setTimeout("CSScrollrightidle()",20)
  2091. var thestring
  2092. leftphrase = "                                                                                                 " + phrase 
  2093. charnum = leftphrase.length;
  2094. stringnum = leftphrase.length;    
  2095. size = leftphrase.length+1
  2096. }
  2097. function CSScrollrightidle() {
  2098.     stringnum--;
  2099.     (stringnum != 0) ? window.status = leftphrase.substring(charnum,stringnum) : stringnum = charnum
  2100.     delay = setTimeout("CSScrollrightidle()",speed); 
  2101.     }
  2102.     
  2103. function CSScrollleftidle() {
  2104.    thestring = leftphrase.substring(0,1);
  2105.    leftphrase += thestring
  2106.    leftphrase = leftphrase.substring(1,size);
  2107.    window.status = leftphrase.substring(0,size);
  2108.    delay = setTimeout("CSScrollleftidle()",speed);
  2109. }
  2110. function CSSearchEngine(action) {
  2111. var form = action[1]
  2112. var elem = action[2]
  2113. var theEntry  
  2114. if(action[3]==true) { theEntry = action[4] } 
  2115. else { theEntry = document.forms[form].elements[elem].value }
  2116. var type=action[5];
  2117. if(type==0) engine="http://search.adobe.com/cgi-bin/query?mss=simple&pg=q&what=web&fmt=.&where=www_search_main&superq="+theEntry+"&rd=all&q="+theEntry+"&x=39&y=10" /* Adobe.com */
  2118. else if(type==1) engine="http://www.altavista.digital.com/cgi-bin/query?pg=q&what=web&fmt=.&q="+theEntry /*Altavista */ 
  2119. else if(type==2) engine="http://groups.google.com/groups?q="+theEntry+"&hl=en&lr=&safe=off&btnG=Google+Search&site=groups"; /* Google Deja News (Usenet) */ 
  2120. else if(type==3) engine="http://www.excite.com/search.gw?trace=a&search="+theEntry; /* Excite */
  2121. else if(type==4) engine="http://www.search.hotbot.com/hResult.html?SM=MC&MT="+theEntry+"&DV=7&RG=.com&DC=10&DE=2&OPs=MDRTP&_v=2&DU=days&SW=web&search.x=23&search.y=8"; /* HotBot */
  2122. else if(type==5) engine="http://www.google.com/search?q="+theEntry+"&btnG=Google+Search" /* Google */
  2123. else if(type==6) engine="http://search.msn.com/results.asp?RS=CHECKED&FORM=MSNH&v=1&q="+theEntry; /* MSN */
  2124. else if(type==7) engine="http://www.lycos.com/cgi-bin/pursuit?query="+theEntry+"&matchmode=and&cat=lycos&x=33&y=10"; /* Lycos */
  2125. else if(type==8) engine="http://shopper.cnet.com/shopping/search/results/1,10214,0-1257,00.html?tag=st%2Esh%2E1257%2Esbsr&qt="+theEntry+"&cn=&ca=1257" /* Shopper.com */
  2126. else if(type==9) engine="http://search.excite.com/search.gw?c=web&lk=webcrawler&onload=&s="+theEntry;/* Webcrawler */
  2127. else if(type==10) engine="http://search.yahoo.com/bin/search?p="+theEntry /* Yahoo */
  2128. if (theEntry=="") { alert("Please enter a search keyword!") } 
  2129. else  { newWindow=window.open(engine, action[6],"toolbar,location,directories,status,menubar,scrollbars,resizable=1") }
  2130. }
  2131.         
  2132. function CSSetBackColor(action) { document.bgColor = action[1]; }
  2133. function CSSetImageURL(action) {
  2134.     var img=CSGetImage(action[1]);
  2135.     if (img) img.src=action[2];
  2136. }
  2137. function CSSetStatus(action) { self.status = action[1]; }
  2138. function ROSetVideoBackgroundColor (act) {
  2139.     var delay,color;
  2140.     color="#";
  2141.     color+=act[1];
  2142.     delay=act[2]*1000;
  2143.     if(delay>0) {
  2144.         var obj=new Object();
  2145.         obj.type="color";
  2146.         obj.time=delay;
  2147.         obj.color=color;
  2148.         if(ROOnPLCArray)
  2149.             ROOnPLCArray[ROOnPLCArray.length]=obj;
  2150.     }
  2151.     else
  2152.         window.parent.external.SetVideoBackgroundColor(color);
  2153. }
  2154. function ROShowArtistInfo (act) {
  2155.     var show;
  2156.     if(act[1]==true)show=1;
  2157.     else show=0;
  2158.     window.parent.external.HandleAction("ShowArtistInfo("+show+")");
  2159. }
  2160. function ROShowPreferences (act) {
  2161.     var str,type;
  2162.     type=act[1];
  2163.     str="ShowPreferences(";
  2164.     if(type==0)str+="General,General";
  2165.     else if(type==1)str+="Connection,Connection";
  2166.     else if(type==2)str+="Connection,Playback Settings";
  2167.     else if(type==3)str+="Connection,Internet Settings";
  2168.     else if(type==4)str+="Connection,Proxy";
  2169.     else if(type==5)str+="Connection,Network Transports";
  2170.     else if(type==6)str+="My Library,My Library";
  2171.     else if(type==7)str+="My Library,Advanced My Library";
  2172.     else if(type==8)str+="CD,CD";
  2173.     else if(type==9)str+="CD,Advanced CD";
  2174.     else if(type==10)str+="Devices,Devices";
  2175.     else if(type==11)str+="Accessories,Accessories";
  2176.     else if(type==12)str+="Media Types,Media Types";
  2177.     else if(type==13)str+="Content,Content";
  2178.     else if(type==14)str+="Hardware,Hardware";
  2179.     else if(type==15)str+="AutoUpdate,AutoUpdate";
  2180.     else return;
  2181.     str+=")";
  2182.     window.parent.external.HandleAction(str);
  2183. }
  2184. function CSShowHide(action) {
  2185.     if (action[1] == '') return;
  2186.     var type=action[2];
  2187.     if(type==0) CSSetStyleVis(action[1],0);
  2188.     else if(type==1) CSSetStyleVis(action[1],1);
  2189.     else if(type==2) { 
  2190.         if (CSGetStyleVis(action[1]) == 0) CSSetStyleVis(action[1],1);
  2191.         else CSSetStyleVis(action[1],0);
  2192.     }
  2193. }
  2194. function CSSlideNewWindow(action) {
  2195. var wh = ""
  2196. if (action[7] || action[8] || action[9] == true) wh=action[4]-125
  2197. else wh = action[4]
  2198. var wf = "";    
  2199. wf = wf + "width=" + action[3];
  2200. wf = wf + ",height=" + wh;
  2201. wf = wf + ",resizable=" + (action[5] ? "yes" : "no");
  2202. wf = wf + ",scrollbars=" + (action[6] ? "yes" : "no");
  2203. wf = wf + ",menubar=" + (action[7] ? "yes" : "no");
  2204. wf = wf + ",toolbar=" + (action[8] ? "yes" : "no");
  2205. wf = wf + ",directories=" + (action[9] ? "yes" : "no");
  2206. wf = wf + ",location=" + (action[10] ? "yes" : "no");
  2207. wf = wf + ",status=" + (action[11] ? "yes" : "no");        
  2208. if(navigator.appVersion.charAt(0) >=4) {
  2209. var sw=screen.width-20;
  2210. var sh=screen.height;
  2211. var newwidth=action[3]; 
  2212. var newheight=action[4];
  2213. var positionleft=(sw-newwidth)/2;
  2214. var positiontop=""
  2215. if (action[7] || action[8] || action[9] == true) positiontop=(sh-newheight)/3;
  2216. else positiontop=(sh-newheight)/2.5;
  2217. }
  2218. newwindow=window.open(action[1],action[2],wf); 
  2219. newwindow.focus()    
  2220. if(navigator.appVersion.charAt(0) >=4) {
  2221.     for(width1 = 1 ; width1 < positionleft ; width1 = width1 + 10)
  2222.     newwindow.moveTo(width1,positiontop)
  2223.     }
  2224. }
  2225. SSnumimg=1; SSsens2=-1;SSsens3=-1
  2226. function CSSlideShow(action) 
  2227. {
  2228. SSmax=action[2]
  2229. SSimgNom=action[1]
  2230. SSloop=action[4]
  2231. SSsens=action[3] 
  2232. SSpalin=action[5]
  2233. var SSimg = null;
  2234.     if (document.images) {
  2235.         if (!IsIE()&&CSBVers<5) SSimg = CSFindElement(SSimgNom,0);
  2236.         else SSimg = document.images[SSimgNom];
  2237. SSstr=SSimg.src
  2238. SSn=SSstr.length
  2239. SSp=SSn-6
  2240. SSpstr=SSstr.substring(0,SSp)
  2241. SSnimg=SSstr.substring(SSp,SSp+2)
  2242. SSformat=SSstr.substring(SSp+2,SSn)
  2243. if (SSformat==".jpg" || SSformat==".JPG" || SSformat==".gif" || SSformat==".GIF")
  2244. {}
  2245. else
  2246. {
  2247.  alert("Image extension must be .jpg or .gif (case sensitive). Images must be numbered 01, 02 ...")
  2248. }
  2249. slide(SSmax,SSformat,SSpstr,SSnimg,SSimgNom,SSloop,SSpalin)
  2250. }
  2251. }
  2252. function slide(SSmax,SSformat,SSpstr,SSnimg,SSimgNom,SSloop,SSpalin)
  2253. {
  2254. if (SSsens2==true) {SSsens=true}
  2255. if (SSsens2==false) {SSsens=false}
  2256. if (SSsens==true) 
  2257. {
  2258. SSsuite=SSnumimg-1
  2259.     if (SSnumimg>SSmax)SSsuite=SSmax
  2260.     if (SSnumimg<=1 & SSloop==true & SSpalin!=true) { SSsuite=SSmax }
  2261.     if (SSnumimg<=1 & SSloop==true & SSpalin==true) { 
  2262.         if (SSsens2==-1 & SSsens3==-1) {SSsuite=SSmax;SSsens3=1} else { SSsuite=SSnumimg+1; SSsens2=false }}
  2263.     if (SSnumimg<=1 & SSloop!=true & SSpalin!=true) {
  2264.         if  (SSsens2==-1 & SSsens3==-1) { SSsuite=SSmax;SSsens3=1 } else {SSsuite=SSnumimg; SSfini()}}
  2265. }
  2266. else
  2267. {
  2268. SSmax=SSmax-1
  2269. SSsuite=SSnumimg+1
  2270.     if (SSnumimg>SSmax & SSloop==true & SSpalin!=true) { SSsuite=1}
  2271.     if (SSnumimg>SSmax & SSloop==true & SSpalin==true) {SSsuite=SSnumimg-1; SSsens2=true }
  2272.     if (SSnumimg>SSmax & SSloop!=true &  SSpalin!=true) { SSsuite=SSnumimg;SSfini() }
  2273.     if (SSnumimg<1) SSsuite=1
  2274. }
  2275. SSnumimg=SSsuite
  2276. if (SSsuite<10) {
  2277.     SSaller="0"+SSsuite
  2278.     }
  2279.     else SSaller=SSsuite
  2280. SSsource=SSpstr+SSaller+SSformat
  2281. var SSimg = null;
  2282.     if (document.images) {
  2283.         if (!IsIE()&&CSBVers<5) SSimg = CSFindElement(SSimgNom,0);
  2284.         else SSimg = document.images[SSimgNom];
  2285.         if (SSimg) SSimg.src = SSsource;
  2286.     }
  2287. }
  2288. function SSfini() {
  2289. }
  2290. function CSSlideShowAuto(action) 
  2291. {
  2292. SSAfini=0
  2293. SSAnumimg=0
  2294. SSAmax=action[2]
  2295. SSAimgNom=action[1]
  2296. SSAtemps=action[3]*1000
  2297. if (action[4]==true) 
  2298.         {
  2299.         SSAstop=true
  2300.         }
  2301.     else SSAstop=false
  2302. var SSAimg = null;
  2303.     if (document.images) {
  2304.         if (!IsIE()&&CSBVers<5) SSAimg = CSFindElement(SSAimgNom,0);
  2305.         else SSAimg = document.images[SSAimgNom];
  2306. str=SSAimg.src
  2307. n=str.length
  2308. p=n-6
  2309. SSApstr=str.substring(0,p)
  2310. SSAnimg=str.substring(p,p+2)
  2311. SSAformat=str.substring(p+2,n)
  2312. if (SSAformat==".jpg" || SSAformat==".JPG" || SSAformat==".gif" || SSAformat==".GIF")
  2313. {}
  2314. else
  2315. {
  2316.  alert("Image extension must be .jpg or .gif (case sensitive). Images must use 2 digit naming starting with 01, 02 ... plus extension")
  2317. }
  2318. if (SSAnimg.substring(0,1)=="0") 
  2319. {
  2320. SSAnumimg=Number(SSAnimg.substring(1,2))
  2321. }
  2322. else
  2323. {SSAnumimg=Number(SSAnimg)}
  2324. SSAtempo(SSAmax,SSAimgNom,SSAtemps,SSAstop,SSApstr,SSAnimg,SSAformat)
  2325. }
  2326. }
  2327. function SSAtempo(SSAmax,SSAimgNom,SSAtemps,SSAstop,SSApstr,SSAnimg,SSAformat)
  2328. {
  2329. setTimeout("slideAuto(SSAmax,SSAimgNom,SSAstop,SSApstr,SSAnimg,SSAformat)",SSAtemps)
  2330. }
  2331. function slideAuto(SSAmax,SSAimgNom,SSAstop,SSApstr,SSAnimg,SSAformat)
  2332. {
  2333. if (SSAfini==1) {
  2334. SSAnumimg = SSAnumimg-2
  2335. CSSlideShowAutoPause()
  2336. }
  2337. else 
  2338. {
  2339. SSAmax=SSAmax-1
  2340. SSAsuite=SSAnumimg+1
  2341.     if (SSAnumimg>SSAmax)
  2342.         {
  2343.         SSAsuite=1
  2344.         if (SSAstop==true) SSAfini=1
  2345.         else
  2346.         SSAfini=0
  2347.         }
  2348.     if (SSAnumimg<1) SSAsuite=1
  2349. SSAnumimg=SSAsuite
  2350. if (SSAsuite<10) {
  2351.     SSAaller="0"+SSAsuite
  2352.     }
  2353.     else SSAaller=SSAsuite
  2354. SSAsource=SSApstr+SSAaller+SSAformat
  2355. var SSAimg = null;
  2356.     if (document.images) {
  2357.         if (!IsIE()&&CSBVers<5) SSAimg = CSFindElement(SSAimgNom,0);
  2358.         else SSAimg = document.images[SSAimgNom];
  2359.         if (SSAimg) SSAimg.src = SSAsource;
  2360.     }
  2361. SSAtempo(SSAmax,SSAimgNom,SSAtemps,SSAstop,SSApstr,SSAnimg,SSAformat)
  2362. }
  2363. }
  2364. function CSSlideShowAutoPause() 
  2365. {}
  2366. function CSSlideShowAutoStop(action) 
  2367. {
  2368. if (SSAfini==0) SSAfini=1
  2369. else SSAfini=0 ; SSAnumimg = SSAnumimg+2 ;  slideAuto(SSAmax,SSAimgNom,SSAstop,SSApstr,SSAnimg,SSAformat)
  2370. }
  2371. function CSStopAll(action) { CSStopComplete (); }
  2372. function CSStopScene(action) { CSStopFunction (action[1]); }
  2373. function CSStopSound (action) {if (eval('document.'+action[1])!=null) { eval ('document.' + action[1] + '.stop()');}}
  2374. function CSSVGredirect(action){   
  2375.      if(navigator.mimeTypes && navigator.mimeTypes["image/svg-xml"] && navigator.mimeTypes["image/svg-xml"].enabledPlugin ) {
  2376.         location.href=action[1]
  2377.     }
  2378.      else if (navigator.appName == "Microsoft Internet Explorer") {
  2379.            x = confirm("The page you are trying to view requires the Adobe Scaling Vector Graphics (.SVG) browser plug-in. We could not detect if your browser has this plug-in installed. To attempt to view the page anyway, click OK. Otherwise click CANCEL to view an alternate page")
  2380.             if (x == true)  location.href=action[1] 
  2381.     }
  2382.     else if(action[2] == true) {
  2383.         alert(action[3])
  2384.     }         
  2385. }
  2386.         
  2387. function CSSWFredirect(action) {    
  2388.     if(navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] && navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin) {
  2389.         location.href=action[1]
  2390.     }
  2391.    else if (navigator.appName == "Microsoft Internet Explorer") {
  2392.            x = confirm("The page you are trying to view requires the Macromedia Flash (.SWF) browser plug-in. We could not detect if your browser has this plug-in installed. To attempt to view the page anyway, click OK. Otherwise click CANCEL to view an alternate page")
  2393.             if (x == true)  location.href=action[1] 
  2394.     }
  2395.     else if(action[2] == true) {
  2396.         alert(action[3])
  2397.     }         
  2398. }
  2399. function CSPAKtrg2frames(action) { 
  2400.     parent.frames[action[1]].location.href = action[2]
  2401.     parent.frames[action[3]].location.href = action[4]
  2402.  }
  2403. function CSPakRemote(action) { 
  2404.     if (TRversion()) {
  2405.         if (action[2].length < 1) {
  2406.             opener.location.href=action[1];
  2407.         }
  2408.         else {
  2409.             opener.parent.frames[action[2]].location.href=action[1];
  2410.         }
  2411.     }
  2412.     return;
  2413. }
  2414. function TRversion() {
  2415.     return (navigator.appName.indexOf("Netscape") >= 0 && parseInt(navigator.appVersion.charAt(0)) >= 3)
  2416.           || (navigator.appName.indexOf("Explorer") >= 0 && parseInt(navigator.appVersion.charAt(0)) >= 3);
  2417. }
  2418. function CStextswapID(action) {
  2419. (action[2] != "") ? (updateobject = action[2]) : (updateobject = action[1]);
  2420. (action[5] == true) ? (whichfunction = "disappear()") : (whichfunction = "revert()");
  2421. if(document.all) { originaltext = document.all(updateobject).innerHTML };
  2422. if(document.getElementById) { originaltext = document.getElementById(updateobject).innerHTML};
  2423. timeout = (action[4] != "") ? (action[4] * 1000) : 0;
  2424. if(document.getElementById) { originaltext = document.getElementById(updateobject).innerHTML};
  2425. timeout = (action[4] != "") ? (action[4] * 1000) : 0;
  2426. if (document.all)     {  document.all(updateobject).innerHTML = action[6] + action[3] + action[7]; if (timeout != 0)  setTimeout(whichfunction,timeout); } 
  2427.     else {     if (document.getElementById) { document.getElementById(updateobject).innerHTML = action[6] + action[3] + action[7];
  2428.             if (timeout != 0)   setTimeout(whichfunction,timeout)  }
  2429.         }
  2430. }
  2431. function disappear() {  if (document.all) { document.all(updateobject).innerHTML = "<div id=updateobject></div>" } 
  2432.     else { if (document.getElementById) { document.getElementById(updateobject).innerHTML = "" }
  2433.     }
  2434. }
  2435. function revert() { if (document.all) { document.all(updateobject).innerHTML = originaltext } 
  2436.     else { if (document.getElementById) { document.getElementById(updateobject).innerHTML = originaltext }
  2437.     }
  2438. }
  2439. function timeRedirect(action) {
  2440. var now = new Date();
  2441. var hours = now.getHours();
  2442. var timeValue = action[1];
  2443. if (timeValue >= 12) { timeValue = timeValue - 12; } /* deals with 24-hour time */
  2444. if (action[2] == true) { timeValue += 12; } /* deals with PM times */
  2445. if (hours < timeValue && action[4] != "(Empty Reference!)" && action[4] != "(EmptyReference!)" && action[3] == true) {
  2446. window.location = action[4]; }
  2447. if (hours >= timeValue && action[6] != "(Empty Reference!)" && action[6] != "(EmptyReference!)" && action[5] == true) {
  2448. window.location = action[6]; }
  2449. }
  2450. function CSTimeout (condition) {
  2451.     var result = false;
  2452.     if (typeof (gCurrentIdleObject) == "undefined")    return result;
  2453.     if (gCurrentIdleObject.lastTime) {
  2454.         var t=new Date();
  2455.         if (t.getTime() >= gCurrentIdleObject.lastTime) { 
  2456.             if (t.getTime() >= gCurrentIdleObject.nextTime) { 
  2457.                 gCurrentIdleObject.lastTime = t.getTime() + condition[1]*1000;
  2458.                 gCurrentIdleObject.nextTime = gCurrentIdleObject.lastTime + condition[1]*1000;
  2459.                 return false;
  2460.             }
  2461.             return true;
  2462.         }
  2463.     } else { 
  2464.         var t=new Date();
  2465.         gCurrentIdleObject.lastTime = t.getTime() + condition[1]*1000;
  2466.         gCurrentIdleObject.nextTime = gCurrentIdleObject.lastTime + condition[1]*1000;
  2467.     }
  2468.     return result;
  2469. }
  2470. function CSvisits(action) {
  2471. mycookie = action[8]
  2472. cookieExpires = new Date
  2473. cookieExpires.setMonth(cookieExpires.getMonth() + 12)
  2474. visits = eval(cookieVal(mycookie))
  2475. visits++
  2476. document.cookie = mycookie+"="+visits+";expires=" + cookieExpires.toGMTString()
  2477.                 
  2478. function cookieVal(cookieName) {
  2479.     thisCookie = document.cookie.split("; ")
  2480.         for (i=0; i<thisCookie.length; i++) {
  2481.             if (cookieName == thisCookie[i].split("=")[0]) {
  2482.             return thisCookie[i].split("=")[1]
  2483.             }
  2484.     }
  2485.  return 0
  2486. }
  2487.     if(visits == 1 && action[1] == true) alert(action[2])
  2488.     else
  2489.     if(action[5] == true) alert(action[3] + " " + visits)
  2490.     if(action[6] == true) {
  2491.         if(visits == action[7])
  2492.         alert(action[4])
  2493.         }
  2494. }
  2495.         
  2496. function CSVisitorCookie(action) 
  2497. {
  2498. resultat = "visitor"
  2499. cookiename = action[1]
  2500. goUrl = action[2]
  2501. var arg = cookiename + "=";
  2502.   var alen = arg.length;
  2503.   var clen = document.cookie.length;
  2504.   var i = 0;
  2505.   while (i < clen) {
  2506.     var j = i + alen;
  2507.        if (document.cookie.substring(i, j) == arg)
  2508.      return CSVisitorGetCookie (j);
  2509.     i = document.cookie.indexOf(" ", i) + 1;
  2510.     if (i == 0) break; 
  2511.   }
  2512.   VisitorSetCookie(cookiename)
  2513.   return null; 
  2514. }
  2515. function CSVisitorGetCookie (offset) {
  2516.   var endstr = document.cookie.indexOf (";", offset);
  2517.   if (endstr == -1) 
  2518.     endstr = document.cookie.length;
  2519.   valeur=unescape(document.cookie.substring(offset, endstr))
  2520.   if (valeur==resultat)
  2521.   VisitorGotoLink(goUrl)
  2522.   else
  2523.   VisitorSetCookie(cookiename)
  2524. }
  2525. function VisitorGotoLink(goUrl) {
  2526. location = goUrl
  2527. }
  2528. function VisitorSetCookie(cookiename) 
  2529. {
  2530. var value="visitor"
  2531. var jours=500*24
  2532. path="/"
  2533. domain=null
  2534. var expdate = new Date ();
  2535. expdate.setTime (expdate.getTime() + (jours * 60 * 60 * 1000));
  2536. SetCookie(cookiename,value,expdate)
  2537. }
  2538. function SetCookie (cookiename, value) {
  2539.   var argv = SetCookie.arguments;
  2540.   var argc = SetCookie.arguments.length;
  2541.   var expires = (argc > 2) ? argv[2] : null;
  2542.   var secure = (argc > 5) ? argv[5] : false;
  2543.   document.cookie = cookiename + "=" + escape (value) +
  2544.     ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
  2545.     ((path == null) ? "" : ("; path=" + path)) +
  2546.     ((domain == null) ? "" : ("; domain=" + domain)) +
  2547.     ((secure == true) ? "; secure" : "");
  2548. }
  2549. function CSStartWipe (action)
  2550. {
  2551.     var el=CSCreateTransElement (action[1], action[2]);
  2552.     if (el==null) return;
  2553.     var dir=action[3];
  2554.     if (dir=="_inLeft") {el.steps=el.clipRect.width/el.maxValue; el.modus="in";}
  2555.     else if (dir=="_inRight") {el.steps=el.clipRect.width/el.maxValue; el.modus="in";}
  2556.     else if (dir=="_outLeft") {el.steps=el.clipRect.width/el.maxValue; el.modus="out";}
  2557.     else if (dir=="_outRight") {el.steps=el.clipRect.width/el.maxValue; el.modus="out";}
  2558.     else if (dir=="_inTop") {el.steps=el.clipRect.height/el.maxValue; el.modus="in";}
  2559.     else if (dir=="_inBottom") {el.steps=el.clipRect.height/el.maxValue; el.modus="in";}
  2560.     else if (dir=="_outTop") {el.steps=el.clipRect.height/el.maxValue; el.modus="out";}
  2561.     else if (dir=="_outBottom") {el.steps=el.clipRect.height/el.maxValue; el.modus="out";}
  2562.     else if (dir=="_inCenter") {el.HSteps=el.clipRect.width/el.maxValue; el.VSteps=el.clipRect.height/el.maxValue; el.modus="in";}
  2563.     else if (dir=="_outCenter") {el.HSteps=el.clipRect.width/el.maxValue; el.VSteps=el.clipRect.height/el.maxValue; el.modus="out";}
  2564.     if (el.modus=="") return;
  2565.     el.currentValue=0;
  2566.     el.glDir=action[3];
  2567.     CSStartFunction(CSDoWipe,el);
  2568. }
  2569. function CSDoWipe (info)
  2570. {
  2571.     var el = info.data;
  2572.     if (el==null) return false;
  2573.     if (el.currentValue==el.maxValue) { CSFinishWipe(el); return false; }
  2574.     var r = new CSRect(el.clipRect.left,el.clipRect.top,el.clipRect.width,el.clipRect.height);
  2575.     var dir=el.glDir;
  2576.     if (dir=="_inLeft") {r.left=r.width-el.currentValue*el.steps;}
  2577.     else if (dir=="_inTop") {r.top=r.height-el.currentValue*el.steps;}
  2578.     else if (dir=="_inRight") {r.width=el.currentValue*el.steps;}
  2579.     else if (dir=="_inBottom") {r.height=el.currentValue*el.steps;}
  2580.     else if (dir=="_outLeft") {r.width=r.width-el.currentValue*el.steps;}
  2581.     else if (dir=="_outTop") {r.height=r.height-el.currentValue*el.steps;}
  2582.     else if (dir=="_outRight") {r.left=el.currentValue*el.steps;}
  2583.     else if (dir=="_outBottom") {r.top=el.currentValue*el.steps;}
  2584.     else if (dir=="_inCenter") {r=CSCenterRectIn(el,r);}
  2585.     else if (dir=="_outCenter") {r=CSCenterRectOut(el,r);}
  2586.     CSSetLayerClip(el,r);
  2587.     el.currentValue+=1;
  2588.     return true;
  2589. }
  2590. function CSFinishWipe (el)
  2591. {
  2592.     if (el.modus=="in") CSSetLayerClip(el,el.clipRect);
  2593.     else { 
  2594.         el.clipRect=new CSRect(0,0,el.width,el.height); 
  2595.         CSSetLayerClip(el,el.clipRect); 
  2596.         CSSetStyleVis(el.layer,0);
  2597.     }
  2598.     CSDisposeTransElement(el);
  2599. }
  2600. function CSCenterRectIn(el,r)
  2601. {
  2602.     var hValue= el.currentValue*el.HSteps/2;
  2603.     var vValue= el.currentValue*el.VSteps/2;
  2604.     r.left=Math.round(r.left+r.width/2-hValue); 
  2605.     r.top=Math.round(r.top+r.height/2-vValue); 
  2606.     r.width=Math.round(hValue*2);
  2607.     r.height=Math.round(vValue*2);
  2608.     return r;
  2609. }
  2610. function CSCenterRectOut(el,r)
  2611. {
  2612.     var hValue= el.currentValue*el.HSteps/2;
  2613.     var vValue= el.currentValue*el.VSteps/2;
  2614.     r.left+=Math.round(hValue); 
  2615.     r.top+=Math.round(vValue); 
  2616.     r.width-=Math.round(hValue*2);
  2617.     r.height-=Math.round(vValue*2);
  2618.     return r;
  2619. }
  2620. function CSshowtime(action) { 
  2621. message = action[1]
  2622. military = action[2]
  2623. offset = action[3] 
  2624. dst = action[4]
  2625. statuscheck = action[5]
  2626. formcheck = action[6]
  2627. form = action[7];
  2628. elem = action[8];
  2629. var dstoffset = 0
  2630. theTimer = setTimeout("theClock()",10);
  2631.     
  2632. function theClock() {   
  2633. clearTimeout(theTimer);
  2634. var now = new Date();
  2635. var correct = now.toGMTString();
  2636. time_string = correct.split(' ');
  2637. hm = time_string[4];
  2638. hm_string = hm.split(':');
  2639. var hours = hm_string[0] - 0;
  2640. var suffix = " A.M."
  2641. if (dst == true) dstoffset = 1
  2642. hours = hours + offset + dst;
  2643.     if (hours < 0) hours +=24    
  2644.     if (hours > 11 && hours < 24)  suffix = " P.M."
  2645.     if (hours > 12 && military == false) hours -=12;
  2646.     
  2647. var minutes = now.getMinutes();
  2648. var timeValue12 = "" + ((hours > 12) ? hours -12 : hours)
  2649. if (timeValue12 == 0) timeValue12 = 12
  2650. var timeValue24 = "" + ((hours > 23) ? hours -24 : hours)
  2651. timeValue12 += ((minutes < 10) ? ":0" : ":") + minutes
  2652. timeValue12 += suffix
  2653. timeValue24 += ((minutes < 10) ? ":0" : ":") + minutes
  2654.     if(military == false)  {
  2655.     WorldTime = message + timeValue12;
  2656.     } else { 
  2657.     WorldTime = message + timeValue24
  2658.     }  
  2659.     if(statuscheck == true)  window.status = WorldTime
  2660.     if(formcheck == true)  document.forms[form].elements[elem].value  = WorldTime
  2661. theTimer = setTimeout("theClock()",5000);
  2662. }
  2663. /* EOF */
  2664.